oxipng / Dockerfile
getapi's picture
Create Dockerfile
c11e982 verified
raw
history blame
No virus
111 Bytes
FROM python:3.12
WORKDIR /code
RUN pip install fastapi httpx pydantic uvicorn
COPY . .
CMD python /code/app.py