play1.dockerfile 269 B

12345678910
  1. FROM openjdk:10-jdk
  2. WORKDIR /play1
  3. COPY app app
  4. COPY conf conf
  5. COPY public public
  6. COPY test test
  7. RUN wget -nv https://downloads.typesafe.com/play/1.5.2/play-1.5.2.zip
  8. RUN unzip -q play-1.5.2.zip
  9. RUN apt-get install -yqq python
  10. CMD ["play-1.5.2/play", "run", "--%prod"]