Created
January 21, 2021 18:38
-
-
Save geofflangenderfer/66f20f6c5652ee0c04ad0727191713a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM openjdk:11 as builder | |
COPY . . | |
RUN ./gradlew jar | |
FROM openjdk:11 | |
COPY --from=builder /build/libs/pipeline-server.jar ./pipeline-server.jar | |
CMD ["java", "-jar", "pipeline-server.jar"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment