Files
query-orchestration/vendor/github.com/golang-migrate/migrate/v4/Dockerfile.github-actions
T
2024-12-19 11:44:13 +00:00

12 lines
237 B
Docker

FROM alpine:3.19
RUN apk add --no-cache ca-certificates
COPY migrate /usr/local/bin/migrate
RUN ln -s /usr/local/bin/migrate /usr/bin/migrate
RUN ln -s /usr/local/bin/migrate /migrate
ENTRYPOINT ["migrate"]
CMD ["--help"]