File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -2,17 +2,14 @@ FROM python:3.9-bullseye
22
33WORKDIR /app
44
5- RUN apt-get update && apt-get install -y openjdk-11-jdk && apt-get clean
6- RUN apt-get update && apt-get install -y chromium unzip curl \
7- && curl -sSL https://chromedriver.storage.googleapis.com/120.0.6099.224/chromedriver_linux64.zip -o /tmp/chromedriver.zip \
8- &&unzip /tmp/chromedriver.zip -d /usr/bin \
9- && rm /tmp/chromedriver.zip
5+ RUN apt-get update && apt-get install -y openjdk-11-jdk chromium && apt-get clean
106
117ENV JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
128ENV PATH=$JAVA_HOME/bin:$PATH
139
1410COPY requirements.txt .
15- RUN pip install -r requirements.txt
11+ RUN pip install -r requirements.txt \
12+ && pip install --upgrade selenium
1613
1714COPY . .
1815
You can’t perform that action at this time.
0 commit comments