ws_feed_adapter/Dockerfile
2020-03-19 11:00:59 -04:00

15 lines
283 B
Docker

# Build
FROM golang:1.14 as go_build
WORKDIR /build/
COPY main.go .
COPY go.mod .
RUN GOOS=linux CGO_ENABLED=0 go build -a -installsuffix cgo -o ws_feed_adapter .
FROM scratch
WORKDIR /root/
COPY --from=go_build ["/build/ws_feed_adapter", "/root/"]
CMD ["/root/ws_feed_adapter"]