mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
* Updates docker images for CLI and Online to JDK 11 and Maven 3.6.3 builders * Uses openjdk:11.0.8-jre-slim-buster rather than alpine as new image publishes CVEs
33 lines
1.0 KiB
Docker
33 lines
1.0 KiB
Docker
## The builder labeled image acts as a transient container which is meant to
|
|
## hold all non-artifact code.
|
|
##
|
|
## You can build _just_ this part with:
|
|
## docker --target builder -t container-name:builder -f .hub.cli.dockerfile .
|
|
FROM maven:3.6.3-jdk-11-openj9 as builder
|
|
|
|
ENV GEN_DIR /opt/openapi-generator
|
|
WORKDIR ${GEN_DIR}
|
|
COPY . ${GEN_DIR}
|
|
|
|
# Pre-compile openapi-generator-cli
|
|
RUN mvn -am -pl "modules/openapi-generator-cli" package
|
|
|
|
## The final (release) image
|
|
## The resulting container here only needs the target jar
|
|
## and ca-certificates (to be able to query HTTPS hosted specs)
|
|
FROM openjdk:11.0.8-jre-slim-buster
|
|
|
|
ENV GEN_DIR /opt/openapi-generator
|
|
|
|
RUN mkdir -p ${GEN_DIR}/modules/openapi-generator-cli/target
|
|
|
|
WORKDIR ${GEN_DIR}/modules/openapi-generator-cli/target
|
|
|
|
COPY --from=builder ${GEN_DIR}/modules/openapi-generator-cli/target/openapi-generator-cli.jar ${GEN_DIR}/modules/openapi-generator-cli/target/openapi-generator-cli.jar
|
|
|
|
COPY docker-entrypoint.sh /usr/local/bin/
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
|
|
CMD ["help"]
|