Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Moonfanz
/
gemini-rproxy
like
43
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0af7a49
gemini-rproxy
/
Dockerfile
Moonfanz
Upload 4 files
7e8a8d2
verified
29 days ago
raw
Copy download link
history
blame
Safe
155 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]