Skip to content

Commit

Permalink
fix(docker): download validator-cli.jar
Browse files Browse the repository at this point in the history
  • Loading branch information
mborne committed Dec 2, 2024
1 parent 09813ca commit 34815ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y locales \
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
unzip zip \
curl \
curl wget \
file \
postgresql-client \
&& rm -rf /var/lib/apt/lists/*
Expand Down Expand Up @@ -117,7 +117,7 @@ RUN apt-get update -qq \
#----------------------------------------------------------------------
ARG validator_version=4.4.5
RUN mkdir -p /opt/ign-validator \
&& curl -sS -o ${VALIDATOR_PATH} https://github.com/IGNF/validator/releases/download/v${validator_version}/validator-cli.jar \
&& wget --quiet -O ${VALIDATOR_PATH} https://github.com/IGNF/validator/releases/download/v${validator_version}/validator-cli.jar \
&& echo "validator-cli.jar version : $(java -jar /opt/ign-validator/validator-cli.jar version)"

#----------------------------------------------------------------------
Expand Down

0 comments on commit 34815ce

Please sign in to comment.