Spaces:
Runtime error
Runtime error
Delete Dockerfile
Browse files- Dockerfile +0 -23
Dockerfile
DELETED
@@ -1,23 +0,0 @@
|
|
1 |
-
FROM python:3.10
|
2 |
-
|
3 |
-
# Set working directory
|
4 |
-
WORKDIR /home/user/app
|
5 |
-
|
6 |
-
# Install necessary system dependencies
|
7 |
-
RUN apt-get update && \
|
8 |
-
apt-get install -y git git-lfs ffmpeg libsm6 libxext6 cmake rsync libgl1-mesa-glx curl && \
|
9 |
-
rm -rf /var/lib/apt/lists/* && \
|
10 |
-
git lfs install
|
11 |
-
|
12 |
-
# Copy requirements.txt before installing dependencies
|
13 |
-
COPY requirements.txt ./
|
14 |
-
|
15 |
-
# Upgrade pip and install Python dependencies
|
16 |
-
RUN pip install --no-cache-dir --upgrade pip && \
|
17 |
-
pip install --no-cache-dir -r requirements.txt
|
18 |
-
|
19 |
-
# Copy the application code
|
20 |
-
COPY . .
|
21 |
-
|
22 |
-
# Command to run your application
|
23 |
-
CMD ["python", "your_application.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|