Created
June 19, 2021 17:21
-
-
Save cod3smith/5259f23126e276ec5f70c141cb8ca343 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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