mirror of
https://github.com/simon987/ws_feed_adapter.git
synced 2025-04-04 08:23:00 +00:00
15 lines
283 B
Docker
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"]
|