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