diff options
| author | Docker Builder <docker@frrouting.org> | 2023-01-19 00:55:01 +0000 | 
|---|---|---|
| committer | Docker Builder <docker@frrouting.org> | 2023-01-19 00:55:01 +0000 | 
| commit | 970865eda2d8b2b22c64bb850e31cc8356b267b9 (patch) | |
| tree | ed67a6322dfe40c8b9c2e85ab7e6c6da34c35c22 /docker/alpine/Dockerfile | |
| parent | df7ab485bde1a511f131f7ad6b70cb43c48c8e6d (diff) | |
docker: fix alpine base image to 3.14docker/7.5.1
Signed-off-by: Docker Builder <docker@frrouting.org>
Diffstat (limited to 'docker/alpine/Dockerfile')
| -rw-r--r-- | docker/alpine/Dockerfile | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/alpine/Dockerfile b/docker/alpine/Dockerfile index 126710f8c2..beb9dbd905 100644 --- a/docker/alpine/Dockerfile +++ b/docker/alpine/Dockerfile @@ -1,5 +1,5 @@  # This stage builds a dist tarball from the source -FROM alpine:latest as source-builder +FROM alpine:3.14 as source-builder  RUN mkdir -p /src/alpine  COPY alpine/APKBUILD.in /src/alpine @@ -21,7 +21,7 @@ RUN cd /src \  	&& make dist  # This stage builds an apk from the dist tarball -FROM alpine:latest as alpine-builder +FROM alpine:3.14 as alpine-builder  # Don't use nocache here so that abuild can use the cache  RUN apk add \  		--update-cache \ @@ -44,7 +44,7 @@ RUN cd /dist \  	&& abuild -r -P /pkgs/apk  # This stage installs frr from the apk -FROM alpine:latest +FROM alpine:3.14  RUN mkdir -p /pkgs/apk  COPY --from=alpine-builder /pkgs/apk/ /pkgs/apk/  RUN apk add \  | 
