Skip to content

Commit 8136be0

Browse files
committed
create dockerfile
1 parent 07dd2b7 commit 8136be0

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM python:3.10
2+
3+
WORKDIR /app
4+
5+
COPY requirements.txt .
6+
RUN apt-get update && \
7+
apt-get -y install libpq-dev libffi-dev && \
8+
pip install -v -r requirements.txt
9+
10+
COPY . .
11+
RUN python3 setup.py install

0 commit comments

Comments
 (0)