Files
goreleaser/Dockerfile
T

20 lines
336 B
Docker
Raw Normal View History

FROM golang:1.17.1-alpine
2018-11-29 12:40:04 -06:00
RUN apk add --no-cache bash \
2021-08-24 20:49:11 -03:00
curl \
docker-cli \
docker-cli-buildx \
git \
mercurial \
make \
build-base
2018-09-04 15:19:01 +03:00
ENTRYPOINT ["/entrypoint.sh"]
CMD [ "-h" ]
2018-12-16 11:11:01 -02:00
COPY scripts/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
2018-12-16 11:11:01 -02:00
COPY goreleaser_*.apk /tmp/
RUN apk add --allow-untrusted /tmp/goreleaser_*.apk