Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jaothan
/
GenAI_project
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fa64206
GenAI_project
/
Dockerfile
jaothan
Upload 24 files
fa64206
verified
22 days ago
raw
Copy download link
history
blame
Safe
157 Bytes
FROM
python:
3.8
-slim
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]