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