xcurvnubaim commited on
Commit
829102d
·
1 Parent(s): 1775e4d

fix: fix input directory

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -10,7 +10,7 @@ COPY ./requirements.txt /code/requirements.txt
10
  RUN curl -o models.h5 "https://drive.usercontent.google.com/download?id=1T5HGnk9Mxlb5G6FTxp26BWSrTpzbjtP2&export=download&authuser=0"
11
  RUN curl -o best.pt "https://drive.usercontent.google.com/download?id=1qG-tEw5j7P1hPQxTlDrXun32gRp3v3DA&export=download&authuser=0"
12
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
13
-
14
  COPY . .
15
 
16
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
10
  RUN curl -o models.h5 "https://drive.usercontent.google.com/download?id=1T5HGnk9Mxlb5G6FTxp26BWSrTpzbjtP2&export=download&authuser=0"
11
  RUN curl -o best.pt "https://drive.usercontent.google.com/download?id=1qG-tEw5j7P1hPQxTlDrXun32gRp3v3DA&export=download&authuser=0"
12
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
13
+ RUN mkdir input
14
  COPY . .
15
 
16
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]