mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-03-10 08:31:23 +00:00
13 lines
259 B
Docker
13 lines
259 B
Docker
FROM openjdk:8-jre-alpine
|
|
|
|
WORKDIR /generator
|
|
|
|
COPY target/openapi-generator-online-3.2.0-SNAPSHOT.jar /generator/openapi-generator-online.jar
|
|
|
|
ENV GENERATOR_HOST=http://localhost
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["java", "-jar", "/generator/openapi-generator-online.jar"]
|
|
|