Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Moonfanz
/
gemini-rproxy
like
92
Building
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
970e6a2
gemini-rproxy
/
Dockerfile
Moonfanz
Upload 4 files
970e6a2
verified
about 1 month 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"
]