Created
May 14, 2020 23:50
-
-
Save vickywane/7b28555c61f35b2697a3f347a7162059 to your computer and use it in GitHub Desktop.
This file contains 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
# small image to reduce resources | |
FROM golang:alpine as Image | |
ENV DIR = $GOPATH/src/github.com/vickywane/event-server/ | |
WORKDIR $DIR | |
# Git is required for fetching the dependencies. | |
RUN apk update && apk add --no-cache git | |
COPY go.mod go.sum ./ | |
RUN go mod download | |
COPY . $DIR | |
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main . | |
WORKDIR /dist | |
COPY /build/server . | |
# Start a new stage from scratch | |
FROM alpine:latest | |
RUN apk --no-cache add ca-certificates | |
COPY --from=Image /server.go . | |
COPY --from=Image /.env . | |
#My Playground Port | |
EXPOSE 4040 | |
RUN go run server.go | |
ENTRYPOINT ["/server"] | |
#CMD ["/dist/server"] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment