Skip to content

Commit

Permalink
Change maven tag in Dockerfile (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
kappsegla authored Feb 9, 2024
1 parent 6772c71 commit 10b5f31
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.9.6-openjdk-21-slim as build
FROM maven:3.9.6-eclipse-temurin-21 as build
COPY ./ /src
RUN mvn -f /src/pom.xml clean package

Expand All @@ -7,4 +7,5 @@ COPY --from=build /src/target/modules /app/modules
COPY --from=build /src/target/storm.jar /app/storm.jar
COPY --from=build /src/webroot /webroot
COPY --from=build /src/config/config.json /etc/storm/config/config.json
EXPOSE 8080
ENTRYPOINT ["java","--module-path","app/storm.jar:app/modules","-m","org.fungover.storm/org.fungover.storm.server.Server"]

0 comments on commit 10b5f31

Please sign in to comment.