1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-31 01:53:50 +02:00
goreleaser/Dockerfile

16 lines
331 B
Docker
Raw Normal View History

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