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.
1 parent 4570d84 commit 4e36c21Copy full SHA for 4e36c21
Dockerfile
@@ -1,10 +1,7 @@
1
-FROM alpine AS certs
2
-RUN apk update && apk add --no-cache git ca-certificates && update-ca-certificates
3
-
4
-FROM scratch
+FROM alpine
5
ARG VERSION
6
7
-COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
8
-COPY "./bin/semantic-release_v${VERSION}_linux_amd64" /semantic-release
+RUN apk update && apk add --no-cache git ca-certificates && update-ca-certificates
+COPY "./bin/semantic-release_v${VERSION}_linux_amd64" /usr/local/bin/semantic-release
9
10
-ENTRYPOINT ["/semantic-release"]
+ENTRYPOINT ["semantic-release"]
0 commit comments