oxipng / Dockerfile
getapi's picture
Update Dockerfile
ad539fc verified
raw
history blame
No virus
216 Bytes
FROM python:3.12
WORKDIR /code
RUN pip install fastapi httpx pillow pydantic uvicorn aiorentry git+https://github.com/PR0LAPSE/post2telegraph
COPY . .
RUN chmod 777 /code && chmod 777 /code/*
CMD python /code/app.py