Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Perfumator version to 0.4.0 #10

Merged
merged 3 commits into from
Oct 10, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.3.2
ENV PERFUMATOR_DOWNLOAD_URL=https://github.com/se2p/perfumator/archive/refs/heads/main.zip
b-fein marked this conversation as resolved.
Show resolved Hide resolved

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-main \
&& mvn -B -DskipTests package \
&& cp target/perfumator-java-${PERFUMATOR_VERSION}-jar-with-dependencies.jar /perfumator-java.jar \
&& :
Expand Down
Loading