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 infrastructure/Dockerfile.agent.optimized
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build \
-o agent .

# Final stage - minimal runtime image
FROM alpine:3.20 AS runtime
FROM alpine:3.23 AS runtime
RUN apk --no-cache add ca-certificates tzdata wget
WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion infrastructure/Dockerfile.controller.optimized
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ COPY --from=production-build /usr/share/zoneinfo /usr/share/zoneinfo
EXPOSE 8080
ENTRYPOINT ["/usr/local/bin/controller"]

FROM alpine:3.20 AS development-runtime
FROM alpine:3.23 AS development-runtime
RUN apk add --no-cache ca-certificates tzdata curl
COPY --from=development /out/controller-dev /usr/local/bin/controller
USER 1000:1000
Expand Down
Loading