From d439cc9b0bf57e55c3f1d9fa8f512ac8f0f58c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A1=B0=EB=AF=BC=ED=98=81?= <71816821+minhyuk2@users.noreply.github.com> Date: Wed, 18 Jun 2025 00:03:29 +0900 Subject: [PATCH] =?UTF-8?q?hotfix=20:=20=EB=8F=84=EC=BB=A4=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ssupetition/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssupetition/Dockerfile b/ssupetition/Dockerfile index 476439d..82e158a 100644 --- a/ssupetition/Dockerfile +++ b/ssupetition/Dockerfile @@ -27,12 +27,12 @@ RUN wget -qO - https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor apt-get update && apt-get install -y google-chrome-stable && \ rm -rf /var/lib/apt/lists/* + # 4) ChromeDriver 설치 (Chrome 137.0.7151.70에 맞는 버전) ARG CHROME_DRIVER_VERSION=137.0.7151.70 -ARG CHROME_DRIVER_REVISION=r1453031 RUN wget -O /tmp/chromedriver.zip \ - "https://storage.googleapis.com/chrome-for-testing-public/${CHROME_DRIVER_VERSION}/${CHROME_DRIVER_REVISION}/chromedriver-linux64.zip" && \ + "https://storage.googleapis.com/chrome-for-testing-public/${CHROME_DRIVER_VERSION}/linux64/chromedriver-linux64.zip" && \ unzip /tmp/chromedriver.zip -d /usr/local/bin && \ rm /tmp/chromedriver.zip && \ chmod +x /usr/local/bin/chromedriver