Skip to content

Commit 8e58dbe

Browse files
authored
Merge branch 'main' into multiple-instances
2 parents b3a2eec + 568de8e commit 8e58dbe

File tree

4 files changed

+29
-81
lines changed

4 files changed

+29
-81
lines changed

Cargo.lock

Lines changed: 22 additions & 74 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ edition = "2021"
99
[dependencies]
1010
axum = "0.6.20"
1111
axum-prometheus = "0.4.0"
12-
base64 = "0.21.2"
12+
base64 = "0.21.3"
1313
calendar-duration = { git = "https://github.com/brave-experiments/calendar-duration", branch = "init" }
14-
clap = { version = "4.3.24", features = ["derive"] }
14+
clap = { version = "4.4.1", features = ["derive"] }
1515
metrics-exporter-prometheus = "0.12.1"
1616
ppoprf = "0.3.1"
1717
rlimit = "0.10"
18-
serde = "1.0.185"
18+
serde = "1.0.188"
1919
serde_json = "1.0.105"
2020
thiserror = "1.0.47"
2121
tikv-jemallocator = "0.5"
22-
time = { version = "0.3.27", features = ["formatting", "parsing"] }
22+
time = { version = "0.3.28", features = ["formatting", "parsing"] }
2323
tokio = { version = "1.32.0", features = ["full"] }
2424
tower-http = { version = "0.4.3", features = ["trace"] }
2525
tracing = "0.1.37"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM public.ecr.aws/docker/library/golang:1.21.0-bookworm as go-builder
77
RUN CGO_ENABLED=0 go install -trimpath -ldflags="-s -w" -buildvcs=false github.com/brave/[email protected]
88

99
# Build the web server application itself.
10-
FROM public.ecr.aws/docker/library/rust:1.71.1-slim-bookworm as rust-builder
10+
FROM public.ecr.aws/docker/library/rust:1.72.0-slim-bookworm as rust-builder
1111

1212
RUN apt update && apt install -y build-essential
1313

misc/temporary-enclave-bypass/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build the web server application itself.
22
# Use the -alpine variant so it will run in a alpine-based container.
3-
FROM public.ecr.aws/docker/library/rust:1.71.1-alpine as rust-builder
3+
FROM public.ecr.aws/docker/library/rust:1.72.0-alpine as rust-builder
44
# Base image may not support C linkage.
55
RUN apk add musl-dev
66

@@ -13,7 +13,7 @@ RUN cargo build --locked --release
1313

1414
RUN cargo install vsock-relay
1515

16-
FROM amazonlinux:2.0.20230808.0
16+
FROM amazonlinux:2.0.20230822.0
1717

1818
RUN echo "timeout=60.0" >> /etc/yum.conf
1919
RUN amazon-linux-extras install aws-nitro-enclaves-cli nginx1 -y && \

0 commit comments

Comments
 (0)