Spaces:
Sleeping
Sleeping
Singularity666
commited on
Delete Dockerfile
Browse files- 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"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|