oxipng / Dockerfile
getapi's picture
Update Dockerfile
8a3a9f5 verified
raw
history blame
141 Bytes
FROM python:3.12
WORKDIR /code
RUN pip install fastapi httpx pydantic uvicorn
COPY . .
RUN chmod 777 /code
USER root
CMD python /code/app.py