dcbot/build/docker/dcbot-migrations/Dockerfile
Dawid Wysokiński e1dd2b12ed
All checks were successful
ci/woodpecker/push/govulncheck Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/tag/docker Pipeline was successful
ci/woodpecker/tag/deployment Pipeline was successful
chore: update deps (#150)
Reviewed-on: #150
2024-04-30 08:16:55 +00:00

14 lines
214 B
Docker

FROM 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"]