1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-29 01:44:39 +02:00
goreleaser/Dockerfile

19 lines
414 B
Docker
Raw Normal View History

ARG ARCH
FROM ${ARCH}/golang:1.15-alpine
RUN apk add --no-cache bash \
curl \
docker-cli \
git \
mercurial \
make \
build-base
ENTRYPOINT ["/entrypoint.sh"]
CMD [ "-h" ]
COPY scripts/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
COPY goreleaser /bin/goreleaser