Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -3,4 +3,5 @@ WORKDIR /code
|
|
3 |
RUN pip install fastapi httpx pydantic uvicorn
|
4 |
COPY . .
|
5 |
RUN chmod 777 /code
|
|
|
6 |
CMD python /code/app.py
|
|
|
3 |
RUN pip install fastapi httpx pydantic uvicorn
|
4 |
COPY . .
|
5 |
RUN chmod 777 /code
|
6 |
+
USER root
|
7 |
CMD python /code/app.py
|