Skip to content

Commit

Permalink
changing dockerfile pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
cworsnop-figure committed May 3, 2022
1 parent 4687af1 commit 48a46b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ RUN gradle clean build --no-daemon

FROM openjdk:11-jre

COPY --from=build /app/service/build/libs/*.jar /service.jar
COPY /app/service/build/libs/*.jar /service.jar
ADD service/docker/service-configure /configure

EXPOSE 8080/tcp

ENTRYPOINT ["/configure"]
CMD ["java", "-jar", "/service.jar"]
CMD ["java", "$JAVA_OPTS", "-jar", "/service.jar"]

0 comments on commit 48a46b5

Please sign in to comment.