Created
July 21, 2022 14:39
-
-
Save ljmotta/8be67f27a18a084f35030373cca6645c to your computer and use it in GitHub Desktop.
This file contains 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 quay.io/lmotta/kn-plugin-workflow:0.0.1 | |
WORKDIR /tmp/kn-workflow/ | |
ARG WORKFLOW_FILE | |
COPY ${WORKFLOW_FILE} ./serverless-workflow/src/main/resources/ | |
RUN cd serverless-workflow && ./mvnw package -Dnative -Dquarkus.kubernetes.deployment-target=knative | |
EXPOSE 8080 | |
ENTRYPOINT [\"/tmp/kn-workflow/serverless-workflow/target/serverless-workflow-0.0.0-runner\"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment