2022-01-31 03:21:31 +01:00
|
|
|
FROM openjdk:8-jdk-alpine
|
|
|
|
|
2022-02-04 14:49:56 +01:00
|
|
|
COPY build/libs/*-SNAPSHOT.jar urls_controller.jar
|
2022-01-31 03:21:31 +01:00
|
|
|
|
2022-02-01 15:57:28 +01:00
|
|
|
EXPOSE 1880
|
2022-01-31 03:21:31 +01:00
|
|
|
|
2022-02-04 14:49:56 +01:00
|
|
|
ENTRYPOINT ["java","-jar","/urls_controller.jar", "--spring.config.location=file:///mnt/config/application.properties"]
|