Skip to content

Instantly share code, notes, and snippets.

@cod3smith
Created June 19, 2021 17:21
Show Gist options
  • Save cod3smith/5259f23126e276ec5f70c141cb8ca343 to your computer and use it in GitHub Desktop.
Save cod3smith/5259f23126e276ec5f70c141cb8ca343 to your computer and use it in GitHub Desktop.
FROM golang:1.16.5
ADD ./ /go/src/app
WORKDIR /go/src/app
RUN go get ./
RUN go build -o ./.build/sortika main.go
CMD ./.build/sortika
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment