dcbot/build/docker/dcbot-migrations/Dockerfile
Dawid Wysokiński 1cbe713b5e
All checks were successful
ci/woodpecker/push/govulncheck Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
chore: woodpecker - fix deprecation warnings
2024-04-30 10:22:55 +02:00

14 lines
240 B
Docker

FROM --platform=$BUILDPLATFORM alpine:3.19
WORKDIR /dcbot
RUN apk --no-cache add curl
RUN curl -fsSL \
https://raw.githubusercontent.com/pressly/goose/master/install.sh |\
sh -s v3.20.0
COPY ./migrations .
ENTRYPOINT ["goose"]