a-ragab-h-m commited on
Commit
4b0cff9
·
verified ·
1 Parent(s): 937ffb3

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -19
Dockerfile DELETED
@@ -1,19 +0,0 @@
1
- FROM python:3.9-slim
2
-
3
- # تثبيت الأدوات الأساسية
4
- RUN apt-get update && apt-get install -y \
5
- git \
6
- build-essential \
7
- python3-dev \
8
- && rm -rf /var/lib/apt/lists/*
9
-
10
- # إعداد بيئة العمل
11
- WORKDIR /code
12
- COPY . /code
13
-
14
- # تثبيت المتطلبات
15
- RUN pip install --upgrade pip && \
16
- pip install torch ortools numpy matplotlib
17
-
18
- # تنفيذ البرنامج عند تشغيل الـ Space
19
- CMD ["python", "app.py"]