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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
cp /app/target/release/ccag-server /usr/local/bin/ccag-server

# Runtime stage — minimal Alpine
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
FROM alpine:3.24@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b
RUN apk add --no-cache ca-certificates curl postgresql16-client && \
addgroup -S proxy && adduser -S proxy -G proxy
COPY --from=builder /usr/local/bin/ccag-server /usr/local/bin/
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.load
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
cargo build --release --bin ccag-server --features mock-bedrock && \
cp /app/target/release/ccag-server /usr/local/bin/ccag-server

FROM alpine:3.23
FROM alpine:3.24
RUN apk add --no-cache ca-certificates curl postgresql16-client && \
addgroup -S proxy && adduser -S proxy -G proxy
COPY --from=builder /usr/local/bin/ccag-server /usr/local/bin/
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Multi-arch release Dockerfile — uses pre-built binaries from CI
# Used by the release workflow; for local builds use the standard Dockerfile
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
FROM alpine:3.24@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b

RUN apk add --no-cache ca-certificates curl postgresql16-client && \
addgroup -S proxy && adduser -S proxy -G proxy
Expand Down
Loading