From dc26124aa3366f141f0be06c56122a2b0357b782 Mon Sep 17 00:00:00 2001 From: Alexander Kiryukhin Date: Wed, 17 Apr 2019 15:30:49 +0300 Subject: Refactoring --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ceffaa6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM golang:1.12 as builder + +ARG MODE=bot +ARG PROXY= +WORKDIR /usr/src +COPY go.mod go.mod +COPY go.sum go.sum +RUN GOPROXY=${PROXY} go mod download +COPY . . +RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o transport ./${MODE} + +FROM alpine:latest + +RUN apk update && apk add --no-cache --virtual ca-certificates +WORKDIR /usr/app +COPY --from=builder /usr/src/transport . +CMD ["./transport"] -- cgit v1.2.3