Mbonea commited on
Commit
f68e970
1 Parent(s): 595f308

RUN chmod 755 /srv

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -68,6 +68,7 @@ COPY --chown=admin . /srv
68
 
69
  # Give read and write permissions to the admin user
70
  RUN chown -R admin:admin /srv
 
71
 
72
  CMD python -m uvicorn App.app:app --workers 1 --host 0.0.0.0 --port 7860
73
 
 
68
 
69
  # Give read and write permissions to the admin user
70
  RUN chown -R admin:admin /srv
71
+ RUN chmod 755 /srv
72
 
73
  CMD python -m uvicorn App.app:app --workers 1 --host 0.0.0.0 --port 7860
74