oxipng / Dockerfile
getapi's picture
Update Dockerfile
f5b4aff verified
raw
history blame
No virus
159 Bytes
FROM python:3.12
WORKDIR /code
RUN pip install fastapi httpx pillow pydantic uvicorn
COPY . .
RUN chmod 777 /code && chmod 777 /code/*
CMD python /code/app.py