1
1
Fork 0
mirror of https://github.com/mcuadros/ascode synced 2024-04-27 12:25:06 +02:00
ascode/Dockerfile
2020-03-27 18:33:10 +01:00

13 lines
389 B
Docker

FROM golang:1.14.0-alpine AS builder
RUN apk --no-cache add make
WORKDIR $GOPATH/src/github.com/mcuadros/ascode
COPY . .
RUN GO111MODULE=on CGO_ENABLED=0 GOPROXY="https://proxy.golang.org" \
go build \
-ldflags "$(make goldflags)" \
-o /bin/ascode .
FROM alpine:latest
RUN apk --no-cache add ca-certificates
COPY --from=builder /bin/ascode /bin/ascode
CMD ["ascode"]