openrouter / Dockerfile
gnilets's picture
Create Dockerfile
c6acc08 verified
raw
history blame contribute delete
154 Bytes
FROM python:3.12
WORKDIR /app
RUN pip install anyio fastapi httpx uvicorn
COPY . /app
RUN chmod 777 /app && chmod 777 /app/*
CMD ["python", "/app/app.py"]