Skip to content

Commit cc06474

Browse files
authored
docker local
1 parent 874dda8 commit cc06474

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
FROM python:3.13-alpine
2-
RUN pip install db-diff
2+
3+
# Copy your local code into the container
4+
COPY . /app
5+
WORKDIR /app
6+
7+
# Install your package locally
8+
RUN pip install .
9+
310
WORKDIR /files
411
ENTRYPOINT ["db-diff"]
512
CMD ["--help"]

0 commit comments

Comments
 (0)