mirror of
https://github.com/simon987/feed_archiver.git
synced 2025-04-04 01:52:58 +00:00
16 lines
299 B
Docker
16 lines
299 B
Docker
# Build
|
|
FROM golang:1.15 as go_build
|
|
WORKDIR /build/
|
|
|
|
COPY *.go ./
|
|
COPY go.mod .
|
|
RUN GOOS=linux CGO_ENABLED=0 go build -a -installsuffix cgo -o feed_archiver .
|
|
RUN strip feed_archiver
|
|
|
|
FROM scratch
|
|
|
|
WORKDIR /root/
|
|
COPY --from=go_build ["/build/feed_archiver", "/root/"]
|
|
|
|
CMD ["/root/feed_archiver"]
|