Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Moonfanz
/
Gemini
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Gemini
/
Dockerfile
Moonfanz
Upload Dockerfile
577fef1
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
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"
]