Last active
December 20, 2022 11:45
-
-
Save fadur/4277439eb9f12883141f16dcc920e907 to your computer and use it in GitHub Desktop.
Dockerfile
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 alpine:latest | |
| COPY ./ZscalerRootCertificate-2048-SHA256.crt /usr/local/share/ca-certificates/my-cert.crt | |
| RUN apk add --no-cache \ | |
| ca-certificates \ | |
| && update-ca-certificates | |
| # install git and go | |
| RUN apk add --no-cache git go | |
fadur
commented
Dec 20, 2022
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment