We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb2f089 + 2ec02c9 commit cf7d4cbCopy full SHA for cf7d4cb
Dockerfile
@@ -3,6 +3,9 @@ FROM alpine:3.13
3
RUN apk --update --no-cache add nodejs npm python3 py3-pip jq curl bash git docker && \
4
ln -sf /usr/bin/python3 /usr/bin/python
5
6
+COPY --from=golang:alpine /usr/local/go/ /usr/local/go/
7
+ENV PATH="/usr/local/go/bin:${PATH}"
8
+
9
COPY entrypoint.sh /entrypoint.sh
10
11
ENTRYPOINT ["/entrypoint.sh"]
README.md
@@ -7,6 +7,7 @@ AWS-CDK GitHub Actions allow you to run `cdk deploy` and `cdk diff` and ... on y
- TypeScript
- JavaScript
- Python
+- Golang
12
## Example usage
13
0 commit comments