Update Dockerfile

modifled docker file
This commit is contained in:
prasannakumar 2024-06-26 18:59:49 +05:30 committed by GitHub
parent abc1dd2523
commit d3545313d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,15 +1,9 @@
# Use an OpenJDK base image
FROM openjdk:17-jdk-alpine
# Setting the working directory in the container
WORKDIR /app
WORKDIR /app/petclinic
# Copy the JAR file from the host machine to the container
COPY ./target/spring-petclinic-3.3.0-SNAPSHOT.jar .
COPY target/spring-petclinic-3.3.0-SNAPSHOT.jar .
# Expose the port your application runs on
EXPOSE 80
# Set the entry point to run the JAR file
ENTRYPOINT ["java", "-jar", "spring-petclinic-3.3.0-SNAPSHOT.jar"]