Abhaykoul commited on
Commit
1dabf9e
·
verified ·
1 Parent(s): ddd763b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -8,10 +8,10 @@ WORKDIR /app
8
  # Add retry logic and split commands for better error handling
9
  RUN apt-get update && \
10
  # Skip upgrades to avoid network issues - only install what's needed
11
- apt-get install -y --no-install-recommends gcc build-essential && \
12
  pip install --upgrade pip && \
13
- pip install -U 'webscout[api]' && \
14
- apt-get purge -y --auto-remove gcc build-essential && \
15
  apt-get clean && rm -rf /var/lib/apt/lists/*
16
 
17
  # Copy the rest of the application code
 
8
  # Add retry logic and split commands for better error handling
9
  RUN apt-get update && \
10
  # Skip upgrades to avoid network issues - only install what's needed
11
+ apt-get install -y --no-install-recommends gcc build-essential git && \
12
  pip install --upgrade pip && \
13
+ pip install -U git+https://github.com/OEvortex/Webscout.git#egg=webscout[api] && \
14
+ apt-get purge -y --auto-remove gcc build-essential git && \
15
  apt-get clean && rm -rf /var/lib/apt/lists/*
16
 
17
  # Copy the rest of the application code