update Dockerfile

This commit is contained in:
Dawid Wysokiński 2020-09-03 13:14:08 +02:00
parent 823170f2ed
commit 84983c8d1e

View File

@ -1,14 +1,31 @@
FROM golang:alpine FROM golang:alpine as builder
RUN apk add git
ENV MODE=production # Set the Current Working Directory inside the container
ENV GIN_MODE=release WORKDIR /app
WORKDIR /go/src/app # Copy go mod and sum files
COPY go.mod go.sum ./
# Download all dependencies. Dependencies will be cached if the go.mod and go.sum files are not changed
RUN go mod download
# Copy the source from the current directory to the Working Directory inside the container
COPY . . COPY . .
RUN go build -o main . RUN go build -o main .
######## Start a new stage from scratch #######
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /root/
# Copy the Pre-built binary file from the previous stage
COPY --from=builder /app/main .
ENV MODE=production
ENV GIN_MODE=release
EXPOSE 8080 EXPOSE 8080
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.2.1/wait ./wait ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.2.1/wait ./wait