We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b78805 commit 8d3aac5Copy full SHA for 8d3aac5
packages/db/Dockerfile
@@ -19,6 +19,7 @@ WORKDIR /build
19
COPY ./shared/pkg ./shared/pkg
20
21
COPY ./db/scripts/migrator.go ./db/scripts/migrator.go
22
+COPY ./db/migrations/ ./db/migrations
23
24
WORKDIR /build/db
25
@@ -28,5 +29,6 @@ RUN chmod +x ./bin/migrator
28
29
FROM alpine:${ALPINE_VERSION}
30
31
COPY --from=builder /build/db/bin/migrator .
32
+COPY --from=builder /build/db/migrations ./migrations
33
34
ENTRYPOINT ["./migrator"]
0 commit comments