-
Notifications
You must be signed in to change notification settings - Fork 69
Updated actionloop python [work in progress] #80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| # && CGO_ENABLED=0 go build -o /bin/proxy | ||
| FROM golang:1.12 as builder | ||
| RUN env CGO_ENABLED=0 go get github.com/apache/openwhisk-runtime-go/main && mv /go/bin/main /bin/proxy | ||
| FROM python:2.7-alpine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you adapt this to use the same approach used in the swift runtime apache/openwhisk-runtime-swift@418ced7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is already done by #81 which was merged and a rebase will pick it up.
|
This needs a rebase. |
This PR updates the actionloop Python to support precompilation. Also fixes Python2 that is disabled but still available in source for those who may need it.