Skip to content

Instantly share code, notes, and snippets.

@Develp10
Created April 15, 2022 09:14
Show Gist options
  • Save Develp10/c8bc75e1beed611812dfe5a2b241d9cb to your computer and use it in GitHub Desktop.
Save Develp10/c8bc75e1beed611812dfe5a2b241d9cb to your computer and use it in GitHub Desktop.
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