Piotr Biernat
6f7952d166
All checks were successful
continuous-integration/drone/push Build is passing
14 lines
360 B
Ruby
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
|