Skip to content
Open
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.22
FROM alpine:3.23

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 @@ -9,7 +9,7 @@ WORKDIR /draco/adapters/$VARIANT
RUN cargo build --release
RUN apk add openssl-dev openssl-libs-static pkgconfig && cargo install code0-cli && code0-cli download -f $VARIANT

FROM alpine:3.22
FROM alpine:3.23
ARG VARIANT

RUN apk --update add libc6-compat
Expand Down
2 changes: 1 addition & 1 deletion container/mise/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.22
FROM alpine:3.23
LABEL org.opencontainers.image.source=https://github.com/code0-tech/reticulum

RUN apk add bash curl tar mise
2 changes: 1 addition & 1 deletion container/taurus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY projects/taurus .
RUN cargo build --release
RUN apk add openssl-dev openssl-libs-static pkgconfig && cargo install code0-cli && code0-cli download -f standard

FROM alpine:3.22
FROM alpine:3.23

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