getapi commited on
Commit
2e2e50f
·
verified ·
1 Parent(s): 8a3a9f5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -3,5 +3,7 @@ WORKDIR /code
3
  RUN pip install fastapi httpx pydantic uvicorn
4
  COPY . .
5
  RUN chmod 777 /code
6
- USER root
 
 
7
  CMD python /code/app.py
 
3
  RUN pip install fastapi httpx pydantic uvicorn
4
  COPY . .
5
  RUN chmod 777 /code
6
+ RUN groupadd -r user && useradd -r -g user user
7
+ RUN chown -R myuser:myuser /code && chmod -R 777 /code
8
+ USER user
9
  CMD python /code/app.py