dcbot/build/docker/dcbot-migrations/Dockerfile
Dawid Wysokiński a92741f802
Some checks failed
continuous-integration/drone/push Build is failing
chore: update deps
2023-07-15 06:36:18 +02:00

14 lines
214 B
Docker

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