Spaces:
Paused
Paused
File size: 396 Bytes
20edb2a fc2d12e 20edb2a 964a0f9 facb01d 964a0f9 7f654c8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#
# Build stage
#
FROM maven:3.8.2-jdk-11 AS build
COPY . .
RUN mvn clean package -DskipTests
#
# Package stage
#
FROM openjdk:11-jdk-slim
COPY --from=build /target/demo-0.0.1-SNAPSHOT.jar demo.jar
COPY --from=build /user.properties user.properties
COPY --from=build /truyna.properties truyna.properties
# ENV PORT=8080
EXPOSE 8081
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-jar","demo.jar"]
|