1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/Dockerfile.cgo

19 lines
432 B
Docker
Raw Normal View History

FROM golang:1.14-alpine
RUN apk add --no-cache bash \
build-base \
bzr \
curl \
docker-cli \
git \
mercurial \
build-base
ENTRYPOINT ["/entrypoint.sh"]
CMD [ "-h" ]
COPY scripts/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
COPY goreleaser /bin/goreleaser