duongve commited on
Commit
c0efa5a
·
1 Parent(s): 669d7b4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -10,6 +10,8 @@ COPY ./main.py /code
10
  COPY ./images /code/images
11
  COPY ./static /code/static
12
 
 
 
13
  EXPOSE 7860
14
 
15
  CMD [ "uvicorn" , "main:app" , "--host" , "0.0.0.0" , "--port" , "7860" ]
 
10
  COPY ./images /code/images
11
  COPY ./static /code/static
12
 
13
+ RUN chmod -R 755 /code/images
14
+
15
  EXPOSE 7860
16
 
17
  CMD [ "uvicorn" , "main:app" , "--host" , "0.0.0.0" , "--port" , "7860" ]