Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -6,7 +6,10 @@ WORKDIR /app
|
|
6 |
|
7 |
COPY --chown=user ./requirements.txt requirements.txt
|
8 |
|
9 |
-
#
|
|
|
|
|
|
|
10 |
RUN grep -v "git+https://github.com/OE-LUCIFER/Webscout.git" requirements.txt > temp_requirements.txt && \
|
11 |
pip install --no-cache-dir --upgrade -r temp_requirements.txt
|
12 |
|
|
|
6 |
|
7 |
COPY --chown=user ./requirements.txt requirements.txt
|
8 |
|
9 |
+
# Upgrade pip, setuptools, and wheel first
|
10 |
+
RUN pip install --no-cache-dir --upgrade pip setuptools wheel
|
11 |
+
|
12 |
+
# Install all dependencies except Webscout
|
13 |
RUN grep -v "git+https://github.com/OE-LUCIFER/Webscout.git" requirements.txt > temp_requirements.txt && \
|
14 |
pip install --no-cache-dir --upgrade -r temp_requirements.txt
|
15 |
|