Gajendra5490 commited on
Commit
743715e
·
verified ·
1 Parent(s): fc41ea6

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -24
Dockerfile DELETED
@@ -1,24 +0,0 @@
1
- FROM python:3.10
2
-
3
- # Install system dependencies
4
- RUN apt-get update && apt-get install -y \
5
- git git-lfs ffmpeg libsm6 libxext6 cmake rsync libgl1-mesa-glx \
6
- && rm -rf /var/lib/apt/lists/*
7
-
8
- # Install Python dependencies
9
- RUN pip install --no-cache-dir --upgrade pip
10
- COPY requirements.txt .
11
- RUN pip install --no-cache-dir -r requirements.txt
12
-
13
- # Install LLaVA dependencies
14
- RUN pip install --no-cache-dir git+https://github.com/haotian-liu/LLaVA.git
15
-
16
- # Set working directory
17
- WORKDIR /app
18
-
19
- # Set default command
20
- CMD ["python", "app.py"] # Change "app.py" to your script's entry point
21
-
22
-
23
-
24
-