FROM openjdk:11-jre-slim COPY target/*.jar /opt/app.jar EXPOSE 8082 ENTRYPOINT ["java", "-jar", "/opt/app.jar"] CMD []