mirror of
https://tvoygit.ru/Djam/abfmigrator.git
synced 2025-02-23 10:22:46 +00:00
17 lines
295 B
Text
17 lines
295 B
Text
|
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"]
|