-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated alpine and openssl as it had CVEs in base image
- Loading branch information
1 parent
e7ba1c0
commit 67a7fd6
Showing
1 changed file
with
2 additions
and
2 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,12 +1,12 @@ | ||
FROM alpine:3.17.0 as alpine | ||
FROM alpine:3.19 as alpine | ||
ARG TARGETPLATFORM | ||
LABEL maintainer "Lucas Lorentz <[email protected]>" | ||
|
||
EXPOSE 80 443 2019 | ||
ENV XDG_CONFIG_HOME /config | ||
ENV XDG_DATA_HOME /data | ||
|
||
RUN apk add -U --no-cache ca-certificates curl | ||
RUN apk add -U --no-cache ca-certificates curl openssl | ||
|
||
COPY artifacts/binaries/$TARGETPLATFORM/caddy /bin/ | ||
|
||
|