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