Spring Boot - Docker and Deployment
Given this Dockerfile snippet:
What happens when you run the built Docker image?
FROM openjdk:17-jdk-slim COPY target/app.jar /app.jar EXPOSE 8080 ENTRYPOINT ["java", "-jar", "/app.jar"]
What happens when you run the built Docker image?
