Files
SteamPriceParser/Dockerfile
goodwin 9749520d00
Some checks failed
Build and push image / deploy (push) Failing after 18s
Added Dockefile + dockeringore
2024-01-29 00:42:07 +03:00

11 lines
166 B
Docker

FROM eclipse-temurin:17-jdk-jammy
WORKDIR /app
COPY .mvn/ .mvn
COPY mvnw pom.xml ./
RUN ./mvnw dependency:resolve
COPY src ./src
CMD ["./mvnw", "spring-boot:run"]