jokyone commited on
Commit
3c2bc94
·
verified ·
1 Parent(s): dc0849b

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+ WORKDIR /app
3
+ COPY requirements.txt.
4
+ RUN apt-get update && apt-get -y install libpq-dev gcc && pip install -r requirements.txt
5
+ COPY. /app
6
+ CMD ["python", "app.py"]