lucianotonet commited on
Commit
2247fac
1 Parent(s): 34f9450

chore: Update Dockerfile to use latest version of ChromeDriver

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. Dockerfile +1 -1
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .env
Dockerfile CHANGED
@@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
12
  google-chrome-stable
13
 
14
  # Instalar o ChromeDriver
15
- RUN wget -O /tmp/chromedriver.zip https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_linux64.zip \
16
  && unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/ \
17
  && rm /tmp/chromedriver.zip
18
 
 
12
  google-chrome-stable
13
 
14
  # Instalar o ChromeDriver
15
+ RUN wget -O /tmp/chromedriver.zip https://chromedriver.storage.googleapis.com/126.0.6478.63/chromedriver_linux64.zip \
16
  && unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/ \
17
  && rm /tmp/chromedriver.zip
18