1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/Dockerfile.cgo
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

18 lines
384 B
Docker

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