Files
WeatherTool/Dockerfile
T

8 lines
211 B
Docker
Raw Normal View History

2023-05-12 23:57:04 +03:00
FROM amazoncorretto:17-alpine
COPY ./web/dist/bundle.js ./web/dist/index.html /web/dist/
2023-05-12 23:57:04 +03:00
COPY ./target/scala-2.13/WeatherTool-assembly-0.1.1-SNAPSHOT.jar /app.jar
VOLUME /data
2023-05-12 23:57:04 +03:00
CMD ["java", "-jar", "/app.jar"]