abfmigrator/Dockerfile

17 lines
295 B
Text
Raw Permalink Normal View History

2024-11-25 23:25:55 +03:00
FROM docker.io/golang:1.23-alpine AS builder
ENV GOEXPORT=https://proxy.golang.org
COPY . /build
RUN cd /build && \
go get ./... && \
go build -ldflags '-s -w' -o abfmigrator && \
go test ./...
FROM scratch
COPY --from=builder /build/abfmigrator .
ENTRYPOINT ["./abfmigrator"]