Workspace-wide sync. luxfi/node already shipped on 1.26.4 in v1.30.6 (commit 121aca1fa9); this is the cross-repo catch-up.
27 lines
497 B
Docker
27 lines
497 B
Docker
FROM golang:1.26.4-alpine3.21 AS builder
|
|
ARG VERSION
|
|
|
|
RUN apk add --no-cache git gcc musl-dev make
|
|
|
|
WORKDIR /go/src/github.com/golang-migrate/migrate
|
|
|
|
ENV GO111MODULE=on
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
COPY . ./
|
|
|
|
RUN make build-docker
|
|
|
|
FROM alpine:3.21
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
COPY --from=builder /go/src/github.com/golang-migrate/migrate/build/migrate.linux-386 /usr/local/bin/migrate
|
|
RUN ln -s /usr/local/bin/migrate /migrate
|
|
|
|
ENTRYPOINT ["migrate"]
|
|
CMD ["--help"]
|