mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 02:55:19 +00:00
010b469914
Simplify other scripts needing this jar Consistent with openapi-generator-cli
13 lines
244 B
Docker
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"]
|
|
|