Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
man08man
/
my-free-ai-generator
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
19f9a8b
my-free-ai-generator
/
dockerfile
man08man
Upload 3 files
4398c5e
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
137 Bytes
FROM
python:
3.9
-slim
# Use Python 3.9 instead of 3.10
WORKDIR
/app
COPY
. .
RUN
pip install -r requirements.txt
CMD
[
"python"
,
"app.py"
]