FROM openjdk:8-jre-slim COPY target/details-02-SNAPSHOT.jar /opt/ EXPOSE 8080 ENTRYPOINT [ "java", "-jar", "/opt/details-02-SNAPSHOT.jar" ] CMD []