Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion container/aquila/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /aquila
COPY projects/aquila .
RUN cargo build --release

FROM alpine:3.21
FROM alpine:3.22

RUN apk --update add libc6-compat
COPY --from=builder /aquila/target/release/aquila .
Expand Down
2 changes: 1 addition & 1 deletion container/draco/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY projects/draco .
WORKDIR /draco/adapters/$VARIANT
RUN cargo build --release

FROM alpine:3.21
FROM alpine:3.22
ARG VARIANT

RUN apk --update add libc6-compat
Expand Down
2 changes: 1 addition & 1 deletion container/taurus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /taurus
COPY projects/taurus .
RUN cargo build --release

FROM alpine:3.21
FROM alpine:3.22

RUN apk --update add libc6-compat
COPY --from=builder /taurus/target/release/taurus .
Expand Down