Created
April 15, 2022 09:14
-
-
Save Develp10/c8bc75e1beed611812dfe5a2b241d9cb 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.18 | |
WORKDIR /go/src/go-fiber-api-docker | |
COPY . . | |
RUN go build -o bin/server cmd/main.go | |
CMD ["./bin/server"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment