-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update the docker image to alpine 3.17
- Loading branch information
1 parent
53a227e
commit 227bac6
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ ARG UPSTREAM_REPO | |
ARG UPSTREAM_TAG | ||
ARG GO_VER | ||
FROM ${UPSTREAM_REPO:-uselagoon}/commons:${UPSTREAM_TAG:-latest} as commons | ||
FROM golang:${GO_VER:-1.17}-alpine3.17 as golang | ||
FROM golang:${GO_VER:-1.17}-alpine3.16 as golang | ||
|
||
RUN apk add --no-cache git | ||
RUN go install github.com/a8m/envsubst/cmd/[email protected] | ||
|
@@ -35,7 +35,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \ | |
# RUN go mod download | ||
# RUN go build -o /app/build-deploy-tool | ||
|
||
FROM docker:20.10.14 | ||
FROM docker:20.10.22 | ||
|
||
LABEL org.opencontainers.image.authors="The Lagoon Authors" maintainer="The Lagoon Authors" | ||
LABEL org.opencontainers.image.source="https://github.com/uselagoon/lagoon-images" repository="https://github.com/uselagoon/lagoon-images" | ||
|