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