Spaces:
Running
Running
Delete Dockerfile
Browse files- Dockerfile +0 -44
Dockerfile
DELETED
@@ -1,44 +0,0 @@
|
|
1 |
-
# Use an official Python 3.11 slim image
|
2 |
-
FROM python:3.11.4-slim
|
3 |
-
|
4 |
-
# Avoid interactive prompts during build
|
5 |
-
ENV DEBIAN_FRONTEND=noninteractive
|
6 |
-
|
7 |
-
# Set working directory
|
8 |
-
WORKDIR /app
|
9 |
-
|
10 |
-
# Install system dependencies (git, build tools, etc.)
|
11 |
-
RUN apt-get update && apt-get install -y \
|
12 |
-
git \
|
13 |
-
build-essential \
|
14 |
-
ffmpeg \
|
15 |
-
libglib2.0-0 \
|
16 |
-
libsm6 \
|
17 |
-
libxext6 \
|
18 |
-
libxrender-dev \
|
19 |
-
&& rm -rf /var/lib/apt/lists/*
|
20 |
-
|
21 |
-
# Upgrade pip, setuptools, wheel, and build tools
|
22 |
-
RUN pip install --upgrade pip setuptools wheel build
|
23 |
-
|
24 |
-
# Force installation of Ultralytics' CLIP fork with legacy build flags
|
25 |
-
RUN pip install --no-cache-dir --no-build-isolation --no-use-pep517 git+https://github.com/ultralytics/CLIP.git
|
26 |
-
|
27 |
-
# Optionally rename installed package folder from "CLIP" to "clip" (for case-sensitive imports)
|
28 |
-
RUN python -c "import os, site; sp = site.getsitepackages()[0]; \
|
29 |
-
src = os.path.join(sp, 'CLIP'); dst = os.path.join(sp, 'clip'); \
|
30 |
-
print('Found folder:', src) if os.path.exists(src) else print('Folder not found, skipping renaming'); \
|
31 |
-
os.rename(src, dst) if os.path.exists(src) else None"
|
32 |
-
|
33 |
-
# Copy requirements file and install remaining dependencies (ensure no duplicate references to CLIP)
|
34 |
-
COPY requirements.txt .
|
35 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
36 |
-
|
37 |
-
# Copy the rest of your application code into the container
|
38 |
-
COPY . .
|
39 |
-
|
40 |
-
# Expose port 7860 (if using a web server like Gradio)
|
41 |
-
EXPOSE 7860
|
42 |
-
|
43 |
-
# Run the application (adjust the command if your entrypoint is different)
|
44 |
-
CMD ["python", "app.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|