1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-22 04:08:49 +02:00
goreleaser/Dockerfile

17 lines
361 B
Docker
Raw Normal View History

2020-08-16 15:38:27 +02:00
FROM golang:1.15-alpine
RUN apk add --no-cache bash \
curl \
docker-cli \
git \
mercurial \
make
ENTRYPOINT ["/entrypoint.sh"]
CMD [ "-h" ]
COPY scripts/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
COPY goreleaser /bin/goreleaser