Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Update maven version to 3.9.1
  • Loading branch information
Claudiney Nascimento authored Apr 5, 2023
1 parent 6e32f14 commit 0828068
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,10 +1,10 @@
FROM alpine:3.16.2 as builder

ARG MAVEN_VERSION=3.8.7
ARG MAVEN_VERSION=3.9.1

RUN apk add --update wget zip openjdk8 git

RUN wget -q -O /tmp/maven.zip https://dlcdn.apache.org/maven/maven-3/3.8.7/binaries/apache-maven-${MAVEN_VERSION}-bin.zip \
RUN wget -q -O /tmp/maven.zip https://dlcdn.apache.org/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.zip \
&& unzip /tmp/maven.zip -d /tmp/ \
&& mkdir -p /usr/local/maven/ \
&& mv /tmp/apache-maven-${MAVEN_VERSION}/* /usr/local/maven/ \
Expand Down

0 comments on commit 0828068

Please sign in to comment.