Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Moonfanz
/
Custom-Gemini
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
d92a175
Custom-Gemini
/
Dockerfile
Moonfanz
Upload 1796 files
e2f726f
verified
4 months 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"
]