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