Skip to content

Commit

Permalink
deps: update to Alpine 3.21 base images
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Howard <[email protected]>
  • Loading branch information
xenoscopic committed Feb 24, 2025
1 parent 6597b8a commit ada6a60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions images/sidecar/linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use an Alpine-based Go builder.
FROM golang:1.23.6-alpine3.20 AS builder
FROM golang:1.23.6-alpine3.21 AS builder

# Disable cgo in order to match the behavior of our release binaries (and to
# avoid the need for gcc on certain architectures).
Expand All @@ -21,7 +21,7 @@ RUN ["go", "build", "-o", "mutagen-agent-sspl", "-tags", "mutagenagent,mutagenss


# Switch to a vanilla Alpine base for the final image.
FROM alpine:3.20 AS base
FROM alpine:3.21 AS base

# Copy the sidecar entry point from the builder.
COPY --from=builder ["/mutagen/mutagen-sidecar", "/usr/bin/mutagen-sidecar"]
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/docker/linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Set the base image.
FROM alpine:3.20
FROM alpine:3.21

# Add the HTTP demo server.
COPY ["httpdemo", "/httpdemo"]
Expand Down

0 comments on commit ada6a60

Please sign in to comment.