Files
WeatherTool/Dockerfile
T

8 lines
184 B
Docker
Raw Normal View History

2023-05-12 23:57:04 +03:00
FROM amazoncorretto:17-alpine
COPY ./web/dist/ /web/dist/
2023-05-12 23:57:04 +03:00
COPY ./target/scala-2.13/WeatherTool-assembly-0.1.1-SNAPSHOT.jar /app.jar
2025-02-13 16:11:50 +02:00
VOLUME /app/data
2023-05-12 23:57:04 +03:00
CMD ["java", "-jar", "/app.jar"]