- Update Go module to v1.19 format - Docker builder pinned to Go v1.20.1 - Alpine image pinned to 3.17.2 (rather than `latest`)
17 lines
511 B
Docker
17 lines
511 B
Docker
FROM golang:1.20.1 as builder
|
|
|
|
WORKDIR /src/litestream
|
|
COPY . .
|
|
|
|
ARG LITESTREAM_VERSION=latest
|
|
|
|
RUN --mount=type=cache,target=/root/.cache/go-build \
|
|
--mount=type=cache,target=/go/pkg \
|
|
go build -ldflags "-s -w -X 'main.Version=${LITESTREAM_VERSION}' -extldflags '-static'" -tags osusergo,netgo,sqlite_omit_load_extension -o /usr/local/bin/litestream ./cmd/litestream
|
|
|
|
|
|
FROM alpine:3.17.2
|
|
COPY --from=builder /usr/local/bin/litestream /usr/local/bin/litestream
|
|
ENTRYPOINT ["/usr/local/bin/litestream"]
|
|
CMD []
|