Jeremie Bresson dd35acdb92 Remove version in the copied jar
Modification introduced on "master" was dropped in "3.3.x" with merge
commit 3b2951b305b40f3de5361474c845c9902fed3394
2018-08-31 10:26:10 +02:00

13 lines
244 B
Docker

FROM openjdk:8-jre-alpine
WORKDIR /generator
COPY target/openapi-generator-online.jar /generator/openapi-generator-online.jar
ENV GENERATOR_HOST=http://localhost
EXPOSE 8080
CMD ["java", "-jar", "/generator/openapi-generator-online.jar"]