mirror of
https://github.com/JasonHHouse/gaps.git
synced 2026-01-26 13:19:17 -06:00
17 lines
292 B
Docker
17 lines
292 B
Docker
FROM openjdk:11.0.5-jre-slim
|
|
|
|
MAINTAINER jh5975@gmail.com
|
|
|
|
EXPOSE 32400
|
|
|
|
RUN mkdir -p /usr/data
|
|
|
|
COPY movieIds.json /tmp
|
|
|
|
RUN mkdir -p /usr/app
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY GapsWeb/target/GapsWeb-0.1.4.jar /usr/app/
|
|
|
|
ENTRYPOINT ["java", "-jar", "-Dspring.profiles.active=ssl", "GapsWeb-0.1.4.jar"] |