janrudolf commited on
Commit
c3d7567
·
1 Parent(s): cc8f338

Docker doesnt need to copy model dir

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -8,8 +8,7 @@ RUN pip install --no-cache-dir --timeout 300 -r requirements-cuda.txt
8
 
9
  # App code and assets
10
  COPY api.py frontend.py run_app_wo_docker.sh ./
11
- COPY img/ ./img/
12
- COPY model/
13
 
14
  RUN chmod +x run_app_wo_docker.sh
15
 
 
8
 
9
  # App code and assets
10
  COPY api.py frontend.py run_app_wo_docker.sh ./
11
+ COPY img/ ./img/
 
12
 
13
  RUN chmod +x run_app_wo_docker.sh
14