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 07dd2b7 commit 8136be0Copy full SHA for 8136be0
Dockerfile
@@ -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