Springify and dockerize project (fixed and improved) #2

Merged
lsmyrnaios merged 17 commits from springify_project into master 2022-02-04 14:56:17 +01:00
1 changed files with 11 additions and 0 deletions
Showing only changes of commit 3da6fd98e9 - Show all commits

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM openjdk:8-jdk-alpine
VOLUME /tmp
VOLUME /mnt/config
VOLUME /mnt/logs
COPY build/libs/*-SNAPSHOT.jar app.jar
RUN ln -s /mnt/config/application.properties ./application.properties
ENTRYPOINT ["java","-jar","/app.jar", "--config.location=application.properties"]