Skip to content

Commit

Permalink
fix: tool versions in dockerfile
Browse files Browse the repository at this point in the history
Fixed tool versions in Builder.Dockerfile lead to failure
building the integration test container.
  • Loading branch information
Sascha Fendrich committed Jan 27, 2025
1 parent 34a90ca commit b697c17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ors-test-scenarios/src/test/resources/Builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG CONTAINER_WORK_DIR=/home/ors/openrouteservice

FROM docker.io/maven:3.9.9-amazoncorretto-21-alpine AS ors-test-scenarios-builder

RUN apk add --no-cache bash=5.2.26-r0 yq=4.44.1-r2 zip=3.0-r12 && \
RUN apk add --no-cache bash~=5 yq~=4 zip~=3 && \
rm -rf /var/cache/apk/*

ARG CONTAINER_BUILD_DIR
Expand Down Expand Up @@ -101,7 +101,7 @@ ENV JAVA_OPTS="-Xmx350M"

FROM docker.io/amazoncorretto:21.0.4-alpine3.20 AS ors-test-scenarios-jar-builder
# Build: docker build --target ors-test-scenarios-jar-bare --tag ors-test-scenarios-jar-bare:latest -f ors-test-scenarios/src/test/resources/Dockerfile .
RUN apk add --no-cache bash=5.2.26-r0 yq=4.44.1-r2 zip=3.0-r12
RUN apk add --no-cache bash~=5 yq~=4 zip~=3

ARG CONTAINER_WORK_DIR
ARG CONTAINER_BUILD_DIR
Expand Down

0 comments on commit b697c17

Please sign in to comment.