We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bb8643 commit e41e79cCopy full SHA for e41e79c
Dockerfile
@@ -1,8 +1,13 @@
1
FROM python:3.10.2-alpine3.15
2
+COPY . .
3
# Install Postgres
4
RUN apk update
5
RUN apk add postgresql
6
RUN chown postgres:postgres /run/postgresql/
7
+# Install requirements
8
+RUN pip install -r requirements.txt
9
+# For psycopg2
10
+RUN apk add --virtual postgresql-deps libpq-dev
11
# Create directories
12
RUN mkdir -p /root/workspace/src
13
# Mount your local file
requirements.txt
@@ -0,0 +1,2 @@
+bs4
+requests
0 commit comments