Skip to content

Instantly share code, notes, and snippets.

@rabingaire
Created March 9, 2020 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rabingaire/b7c4c33480c8b9ecbac65ef5b6908e44 to your computer and use it in GitHub Desktop.
Save rabingaire/b7c4c33480c8b9ecbac65ef5b6908e44 to your computer and use it in GitHub Desktop.
FROM golang:alpine
RUN apk add --no-cache make curl gcc libc-dev
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
CMD make integration-tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment