Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -5,12 +5,12 @@ FROM ultrafunk/undetected-chromedriver:latest
|
|
5 |
RUN apt-get update \
|
6 |
&& apt-get install -y python3-pip python3-dev \
|
7 |
&& cd /usr/local/bin \
|
8 |
-
&& ln -s /usr/bin/python3
|
9 |
&& pip3 --no-cache-dir install --upgrade pip \
|
10 |
&& rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
COPY requirements.txt .
|
13 |
-
RUN
|
14 |
|
15 |
COPY aberconnect.sh .
|
16 |
|
|
|
5 |
RUN apt-get update \
|
6 |
&& apt-get install -y python3-pip python3-dev \
|
7 |
&& cd /usr/local/bin \
|
8 |
+
&& ln -s /usr/bin/python3 python3 \
|
9 |
&& pip3 --no-cache-dir install --upgrade pip \
|
10 |
&& rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
COPY requirements.txt .
|
13 |
+
RUN python3 -m pip install -r requirements.txt
|
14 |
|
15 |
COPY aberconnect.sh .
|
16 |
|