Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
AnesKAM
/
Genisi
like
1
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
Genisi
/
Dockerfile
AnesKAM
Update Dockerfile
63add60
verified
about 1 month ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
256 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
# تثبيت المتطلبات
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
# نسخ الملفات
COPY
. .
# تشغيل التطبيق مباشرة مع Python
CMD
[
"python"
,
"app.py"
]