1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-29 01:44:39 +02:00
goreleaser/Dockerfile
Srdjan Grubor 5e3e6b2e85 fix: convert docker images to Alpine (#884)
This should signifficantly reduce the image size of the Docker images
needed to use Goreleaser

Resolves #882
2018-11-29 16:40:04 -02:00

17 lines
348 B
Docker

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