mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-28 12:30:54 +00:00
* Restore version to 3.0.0-SNAPSHOT * Set version to 3.0.1-SNAPSHOT * Run ensure-up-to-date * Remove duplicated version declaration
13 lines
259 B
Docker
13 lines
259 B
Docker
FROM openjdk:8-jre-alpine
|
|
|
|
WORKDIR /generator
|
|
|
|
COPY target/openapi-generator-online-3.0.1-SNAPSHOT.jar /generator/openapi-generator-online.jar
|
|
|
|
ENV GENERATOR_HOST=http://localhost
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["java", "-jar", "/generator/openapi-generator-online.jar"]
|
|
|