1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-04 03:11:55 +02:00
goreleaser/Dockerfile
2020-08-16 11:21:56 -03:00

17 lines
361 B
Docker

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