Skip to content

Commit 05bff89

Browse files
committed
fix: add migrations folder to Dockerfile
1 parent 00f93dd commit 05bff89

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

gh-Dockerfile

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
FROM debian:stable-slim
2-
COPY storage-api-x86_64 /bin/
3-
ENTRYPOINT "/bin/storage-api-x86_64"
2+
3+
RUN mkdir -p /root/storage
4+
WORKDIR /root/storage
5+
6+
COPY storage-api-x86_64 .
7+
COPY migrations ./migrations
8+
9+
ENTRYPOINT "./storage-api-x86_64"
410
EXPOSE 5000

0 commit comments

Comments
 (0)