github.com/aeternity/aepp-sdk-go/v4@v4.0.1/Dockerfile.ci (about)

     1  # Heads-Up: This Dockerfile is *exclusively* used for CI. It is referenced by
     2  # Jenkinsfile and should not be used by any other means.
     3  
     4  FROM golang:1-alpine
     5  
     6  USER root
     7  
     8  RUN apk add --no-cache curl git make 
     9  
    10  WORKDIR /go/src/app
    11  
    12  RUN curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose && chmod +x /usr/local/bin/docker-compose