-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update alpine docker tag to v3.20
- Loading branch information
1 parent
2db9ffe
commit 37c2dc4
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
ARG CARGO_ARGS | ||
ARG CARGO_RELEASE="release" | ||
|
||
FROM alpine:3.19 AS build | ||
FROM alpine:3.20 AS build | ||
LABEL maintainer="Ivan <[email protected]>" | ||
|
||
ARG CARGO_ARGS | ||
|
@@ -30,7 +30,7 @@ RUN apk add git &&\ | |
npm run build &&\ | ||
./compress_dist.sh | ||
|
||
FROM alpine:3.19 | ||
FROM alpine:3.20 | ||
|
||
ARG CARGO_ARGS | ||
ARG CARGO_RELEASE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.19 AS build | ||
FROM alpine:3.20 AS build | ||
LABEL maintainer="Ivan <[email protected]>" | ||
ENV CARGO_ARGS="" | ||
ENV FEATURES="" | ||
|