Skip to content

Commit e90b9ba

Browse files
author
shreeda
committed
added Dockerfile
1 parent 25b3fcb commit e90b9ba

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# syntax=docker/dockerfile:1
2+
3+
FROM eclipse-temurin:17-jdk-jammy
4+
5+
WORKDIR /app
6+
7+
COPY .mvn/ .mvn
8+
COPY mvnw pom.xml ./
9+
RUN ./mvnw dependency:resolve
10+
11+
COPY src ./src
12+
13+
CMD ["./mvnw", "spring-boot:run"]

0 commit comments

Comments
 (0)