Created
July 27, 2024 11:50
-
-
Save shashanthk/4265fa62c36a754b48e0b7031d4d295a to your computer and use it in GitHub Desktop.
Building Docker image using Spring Boot code
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 AS builder | |
## install maven CLI | |
RUN apk add --no-cache maven | |
## container directory | |
WORKDIR /app | |
## copy the pom.xml and download the dependencies | |
COPY pom.xml . | |
RUN mvn dependency:go-offline -B | |
## copy the source code and build the application | |
COPY src ./src | |
RUN mvn package -DskipTests | |
## run the application | |
FROM eclipse-temurin:21-alpine | |
## set the working directory inside the container | |
WORKDIR /app | |
## copy the JAR file from the builder stage | |
COPY --from=builder /app/target/spring-docker-0.0.1.jar app.jar | |
## expose service port | |
EXPOSE 8080 | |
## start service | |
ENTRYPOINT ["java","-jar","app.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