Update Dockerfile
Browse files- 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
|
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
|