Singularity666 commited on
Commit
d6f9256
·
verified ·
1 Parent(s): 4bb1d67

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -28
Dockerfile DELETED
@@ -1,28 +0,0 @@
1
- FROM python:3.10
2
-
3
- # Install necessary packages
4
- RUN apt-get update && apt-get install -y \
5
- git \
6
- git-lfs \
7
- ffmpeg \
8
- libsm6 \
9
- libxext6 \
10
- cmake \
11
- rsync \
12
- libgl1-mesa-glx \
13
- && rm -rf /var/lib/apt/lists/* \
14
- && git lfs install
15
-
16
- # Upgrade pip
17
- RUN pip install --no-cache-dir pip==22.3.1
18
-
19
- # Copy and install dependencies from requirements.txt
20
- COPY requirements.txt .
21
- RUN pip install --no-cache-dir -r requirements.txt
22
-
23
- # Copy the application files
24
- COPY . /app
25
- WORKDIR /app
26
-
27
- # Set the entry point
28
- CMD ["python", "app.py"]