Offex commited on
Commit
b581ef8
·
verified ·
1 Parent(s): 75fe24e

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -18
Dockerfile DELETED
@@ -1,18 +0,0 @@
1
- FROM python:3.10
2
-
3
- # सिस्टम लाइब्रेरी इंस्टॉल करना
4
- RUN apt-get update && apt-get install -y \
5
- ffmpeg \
6
- && rm -rf /var/lib/apt/lists/*
7
-
8
- WORKDIR /app
9
-
10
- # पहले requirements इंस्टॉल करें ताकि कैश बना रहे
11
- COPY requirements.txt .
12
- RUN pip install --no-cache-dir -r requirements.txt
13
-
14
- # बाकी कोड कॉपी करें
15
- COPY . .
16
-
17
- # पोर्ट सेट करना
18
- CMD ["python", "app.py"]