File size: 111 Bytes
c11e982
 
 
 
 
1
2
3
4
5
6
FROM python:3.12
WORKDIR /code
RUN pip install fastapi httpx pydantic uvicorn
COPY . .
CMD python /code/app.py