Skip to content

Commit

Permalink
Update Perfumator version to 0.4.0 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisknedl authored Oct 10, 2024
1 parent b5f3fb4 commit 42f96e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM docker.io/library/maven:3-eclipse-temurin-17 AS perfumator-builder

ARG PERFUMATOR_VERSION=0.3.0
ENV PERFUMATOR_DOWNLOAD_URL=https://git.fim.uni-passau.de/silbereise/perfumator-java/-/archive/v${PERFUMATOR_VERSION}/perfumator-java-v${PERFUMATOR_VERSION}.zip
ARG PERFUMATOR_VERSION=0.4.0
ENV PERFUMATOR_DOWNLOAD_URL=https://github.com/se2p/perfumator/archive/refs/tags/v${PERFUMATOR_VERSION}.zip

RUN : \
&& apt-get update \
&& apt-get install -y unzip \
&& wget -q -O perfumator.zip ${PERFUMATOR_DOWNLOAD_URL} \
&& unzip perfumator.zip \
&& cd perfumator-java-v${PERFUMATOR_VERSION} \
&& cd perfumator-${PERFUMATOR_VERSION} \
&& mvn -B -DskipTests package \
&& cp target/perfumator-java-${PERFUMATOR_VERSION}-jar-with-dependencies.jar /perfumator-java.jar \
&& :
Expand Down

0 comments on commit 42f96e7

Please sign in to comment.