Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bump alpine to 3.20.3 #9094

Merged
merged 2 commits into from
Oct 11, 2024
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.4

FROM alpine:3.18 as build-environment
FROM alpine:3.20.3 as build-environment
gnapoli23 marked this conversation as resolved.
Show resolved Hide resolved

ARG TARGETARCH
WORKDIR /opt
Expand Down Expand Up @@ -30,7 +30,7 @@ RUN --mount=type=cache,target=/root/.cargo/registry --mount=type=cache,target=/r
&& strip out/chisel \
&& strip out/anvil;

FROM alpine:3.18 as foundry-client
FROM alpine:3.20.3 as foundry-client
gnapoli23 marked this conversation as resolved.
Show resolved Hide resolved

RUN apk add --no-cache linux-headers git gcompat libstdc++

Expand Down
Loading