Browse Source

moved installing packages to .venv/

chenhaiyang 4 years ago
parent
commit
9daa84ac24
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -2,7 +2,7 @@ FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8
 
 COPY requirements.txt .
 
-COPY ./pkgs /app/pkgs
+COPY ./venv/pkgs /app/pkgs
 RUN pip3 install --no-index --find-links=pkgs -r requirements.txt