Skip to content

Instantly share code, notes, and snippets.

@IronCore864
Created August 1, 2021 08:42
Show Gist options
  • Save IronCore864/93f24a37e14e02d21842220aff1c73e1 to your computer and use it in GitHub Desktop.
Save IronCore864/93f24a37e14e02d21842220aff1c73e1 to your computer and use it in GitHub Desktop.
Dockerfile Example
FROM golang:alpine
WORKDIR /app
COPY . .
RUN apk add git
RUN go get ./... && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment