liberty-bikes/game-service/Dockerfile
2019-10-03 12:05:42 -05:00

10 lines
379 B
Docker

FROM open-liberty:19.0.0.9-microProfile3-java11
ADD --chown=1001:0 build/libs/game-service.war /config/dropins
COPY --chown=1001:0 src/main/liberty/config /config/
RUN printf 'httpPort=8080\n\
httpsPort=8443' > /config/bootstrap.properties
#RUN printf -- "-Dorg.libertybikes.restclient.PlayerService/mp-rest/url=\
#http://lb-player:8081/" > /config/jvm.options
EXPOSE 8080 8443