jokyone commited on
Commit
cfe17f2
·
verified ·
1 Parent(s): c20a9ab

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -2,5 +2,5 @@ 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.py /app/app.py
6
  CMD ["python", "app.py"]
 
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 . .
6
  CMD ["python", "app.py"]