File size: 240 Bytes
c11e982
 
 
 
38fd3c4
2e2e50f
8c9c913
2e2e50f
c11e982
1
2
3
4
5
6
7
8
9
10
FROM python:3.12
WORKDIR /code
RUN pip install fastapi httpx pydantic uvicorn
COPY . .
RUN chmod 777 /code
RUN groupadd -r user && useradd -r -g user user
RUN chown -R user:user /code && chmod -R 777 /code
USER user
CMD python /code/app.py