소스 검색

Update Dockerfile to include urban_centers csv

Kirk Trombley 5 년 전
부모
커밋
bceb13accc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      server/Dockerfile

+ 1 - 1
server/Dockerfile

@@ -12,6 +12,6 @@ COPY requirements.txt ./
 
 RUN pip3 install -r requirements.txt
 
-COPY app.py db.py extra_api.py game_api.py lib.py ./
+COPY app.py db.py extra_api.py game_api.py lib.py urban_centers.csv ./
 
 CMD gunicorn --workers=1 --bind=0.0.0.0:5000 app:app