github.com/joselitofilho/goreleaser@v0.155.1-0.20210123221854-e4891856c593/Dockerfile (about)

     1  FROM golang:1.15-alpine
     2  
     3  RUN apk add --no-cache bash \
     4                         curl \
     5                         docker-cli \
     6                         git \
     7                         mercurial \
     8                         make \
     9                         build-base
    10  
    11  ENTRYPOINT ["/entrypoint.sh"]
    12  CMD [ "-h" ]
    13  
    14  COPY scripts/entrypoint.sh /entrypoint.sh
    15  RUN chmod +x /entrypoint.sh
    16  
    17  COPY goreleaser_*.apk /tmp/
    18  RUN apk add --allow-untrusted /tmp/goreleaser_*.apk