forked from spiffe/spire
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update alpine base image to v3.18 (spiffe#4598)
Signed-off-by: Barry Melbourne <[email protected]>
- Loading branch information
1 parent
8fda5ae
commit 072b6cb
Showing
2 changed files
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,4 +1,4 @@ | ||
FROM alpine:3.17 as nested-agent-alpine | ||
FROM alpine:3.18 as nested-agent-alpine | ||
RUN apk add --no-cache --update openssl | ||
COPY --from=spire-agent:latest-local /opt/spire/bin/spire-agent /opt/spire/bin/spire-agent | ||
ENTRYPOINT ["/opt/spire/bin/spire-agent", "run"] |
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.17 AS spire-server-alpine | ||
FROM alpine:3.18 AS spire-server-alpine | ||
RUN apk add --no-cache --update openssl | ||
COPY --from=spire-server:latest-local /opt/spire/bin/spire-server /opt/spire/bin/spire-server | ||
ENTRYPOINT ["/opt/spire/bin/spire-server", "run"] |