Update Dockerfile
Browse files- 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 |
-
|
|
|
|
|
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
|