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

Update alpine Docker tag to v3.20.0 #1314

Merged
merged 1 commit into from
May 22, 2024
Merged
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 .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.19.1
FROM alpine:3.20.0

COPY --from=node:22.2.0-alpine / /
COPY --from=rust:1.78.0-alpine / /
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ ENTRYPOINT [ "codacy-coverage" ]
# required for Renovate to update the base image:
FROM node:22.2.0-alpine as node

FROM alpine:3.19.1 as deploy-base
FROM alpine:3.20.0 as deploy-base
ARG TARGETARCH

# Install standard libraries and copy Node.js binary
Expand Down