Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ COPY ./LICENSE ${GEN_DIR}
# copies source code in for jar packaging
COPY ./src ${GEN_DIR}/src
COPY ./pom.xml ${GEN_DIR}
# Remove symlinks
RUN rm -rf src/test/resources/3_0/unit_test_spec/venv
RUN rm -rf src/test/resources/JSON-Schema-Test-Suite/tests/latest
# Pre-compile openapi-generator-cli
RUN mvn -am -pl . package
# # Remove src + samples dirs
RUN rm -rf src
RUN rm -rf samples

# multi stage build, jar in smaller image
FROM openjdk:11.0-jre-buster
Expand Down