Skip to content
Snippets Groups Projects
Commit cd6c182a authored by Stian Lyng Stræte's avatar Stian Lyng Stræte
Browse files

update Dockerfile

parent ffbf6218
Branches 217-add-algotihm-to-find-relevant-statistics
No related tags found
No related merge requests found
FROM eclipse-temurin:19-jdk-alpine
WORKDIR /app
COPY . .
RUN apk add maven
RUN mvn clean install
VOLUME /tmp
COPY target/*.jar app.jar
ENTRYPOINT ["java","-jar","/app.jar"]
ENTRYPOINT ["java","-jar","/app/app.jar"]
EXPOSE 8080
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment