Spring Boot - Docker and Deployment
A developer wrote this Dockerfile snippet for a Spring Boot app:
Why might this container fail to start?
FROM openjdk:17-jdk-slim COPY target/app.jar /app.jar CMD java -jar /app.jar
Why might this container fail to start?
