Skip to content

Commit

Permalink
Dockerfile: use alpine 3.12 image
Browse files Browse the repository at this point in the history
  • Loading branch information
sgreben committed Nov 20, 2020
1 parent 814d7ee commit 212d64c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.8 AS download-maven
FROM alpine:3.12 AS download-maven
RUN apk add --no-cache curl
ARG MAVEN_VERSION=3.5.4
ARG SHA=ce50b1c91364cb77efe3776f756a6d92b76d9038b0a0782f7d53acf1e997a14d
Expand All @@ -8,7 +8,7 @@ RUN mkdir -p /app /app/ref \
&& echo "${SHA} /maven.tar.gz" | sha256sum -c - \
&& tar -xzf /maven.tar.gz -C /app --strip-components=1

FROM alpine:3.8 AS generate-gpg-key
FROM alpine:3.12 AS generate-gpg-key
RUN apk add --no-cache gnupg1
ENV GNUPGHOME=/key
RUN mkdir -p "${GNUPGHOME}"
Expand Down

0 comments on commit 212d64c

Please sign in to comment.