From 84dcbf4f5f00eb88a1b5ff36710a7493ad068dfa Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Mon, 6 Jul 2020 16:54:04 -0700 Subject: [PATCH] Add Dockerfile --- Dockerfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..c787c9b2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ +FROM golang:1.14-alpine as build-env +RUN mkdir /work +RUN mkdir /work/out +WORKDIR /work +# Get dependencies first so they can be cached as a layer +COPY go.mod . +COPY go.sum . +RUN go mod download +# Copy the source code +COPY . . +# Build the executable binary +RUN GOOS=linux GOARCH=amd64 go build -o out ./... + +FROM alpine:latest +# Install CA certs and some tools for debugging +RUN apk --update --no-cache add ca-certificates bash curl +WORKDIR /root/ +# Copy the binary from the build-env stage +COPY --from=build-env /work/out/placeholder-name app +# Document the port +EXPOSE 8080 +# Set the command +CMD ["./app"]