Abhaykoul commited on
Commit
e3f9d3e
·
verified ·
1 Parent(s): e2b1a14

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -6,7 +6,10 @@ WORKDIR /app
6
 
7
  COPY --chown=user ./requirements.txt requirements.txt
8
 
9
- # Install everything except Webscout
 
 
 
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