mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 04:30:51 +00:00
* Update base image of Dockerfile * Make github workflow "Docker tests" manually triggerable * Don't possibly downgrade TLS version * Update Dockerimage in ``run-in-docker.sh`` * Use Maven's non interactive mode inside workflow * Don't spam log * Use java 17 because it won't compile with 21 * Removed hard memory limit as memory should be controlled by the container * Update hub dockerfiles
33 lines
928 B
Docker
33 lines
928 B
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.online.dockerfile .
|
|
FROM maven:3-eclipse-temurin-17 as builder
|
|
|
|
ENV GEN_DIR /opt/openapi-generator
|
|
WORKDIR ${GEN_DIR}
|
|
COPY . ${GEN_DIR}
|
|
|
|
# Pre-compile openapi-generator-online
|
|
RUN mvn -B -am -pl "modules/openapi-generator-online" package
|
|
|
|
## The final (release) image
|
|
## The resulting container here only needs the target jar
|
|
FROM eclipse-temurin:17-jre
|
|
|
|
ENV GEN_DIR /opt/openapi-generator
|
|
ENV TARGET_DIR /generator
|
|
|
|
RUN mkdir -p ${TARGET_DIR}
|
|
|
|
WORKDIR ${TARGET_DIR}
|
|
|
|
COPY --from=builder ${GEN_DIR}/modules/openapi-generator-online/target/openapi-generator-online.jar ${TARGET_DIR}/openapi-generator-online.jar
|
|
|
|
ENV GENERATOR_HOST=""
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["java", "-jar", "/generator/openapi-generator-online.jar"]
|