order-service/Dockerfile.builder
Piotr Biernat 0cdaa00682
Some checks failed
continuous-integration/drone/push Build is failing
vendor support and image build optimalization
2022-12-01 06:22:54 +01:00

14 lines
360 B
Ruby

# Builder
FROM golang:alpine
ARG BIN_OUTPUT=/go/bin
ARG GO_SERVER=cmd/server/main.go
ARG GO_WORKER=cmd/worker/main.go
WORKDIR /go/src/app
COPY src ./
RUN export CGO_ENABLED=0 ; export GOOS=linux ; export GOARCH=amd64 && \
go build -ldflags="-w -s" -o "$BIN_OUTPUT/server" $GO_SERVER && \
go build -ldflags="-w -s" -o "$BIN_OUTPUT/worker" $GO_WORKER