Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
revproxy
/
openrouter
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
29e5784
openrouter
/
Dockerfile
gnilets
Create Dockerfile
c6acc08
verified
6 months ago
raw
Copy download link
history
blame
Safe
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"
]