1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-09 13:36:56 +02:00
goreleaser/Dockerfile
dependabot[bot] e51b6d67f5
chore(deps): bump golang from 1.16-alpine to 1.16.6-alpine (#2345)
Bumps golang from 1.16-alpine to 1.16.6-alpine.

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-16 15:48:08 -03:00

19 lines
447 B
Docker

FROM golang:1.16.6-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_*.apk /tmp/
RUN apk add --allow-untrusted /tmp/goreleaser_*.apk