Created
July 27, 2024 11:31
-
-
Save shashanthk/3d7dd535bf77c5ab1da18ebf72df9ddb to your computer and use it in GitHub Desktop.
Simple Docker file for Spring Boot project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## JDK | |
FROM eclipse-temurin:21-alpine | |
## container direcotry | |
WORKDIR /app | |
## copy build file from host to container | |
COPY target/jar-file-name.jar /app | |
## expose service port | |
EXPOSE 8080 | |
## start service | |
CMD ["java", "-jar", "jar-file-name.jar"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Keep the above file in root directory of your Spring Boot project.
To build Docker image, execute the below command:
To create a container out of it