1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-04 03:11:55 +02:00
goreleaser/Dockerfile
Igor 52e984f377
feat: Install make into docker image (#1621)
* Install make into docker image

* Whitespace
2020-06-19 10:02:01 -03:00

17 lines
361 B
Docker

FROM golang:1.14-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