Kimang18 commited on
Commit
e4c4cf4
·
1 Parent(s): 2f83e6d

update working directory

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -13,4 +13,7 @@ COPY --chown=user ./requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
 
 
 
16
  CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]
 
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
16
+
17
+ # create the uploads directory inside the container
18
+ RUN mkdir -p /app/images /app/anno
19
  CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]