umihico / docker-selenium-lambda

The simplest demo of chrome automation by python and selenium in AWS Lambda
MIT License
504 stars 119 forks source link

PR:Version Updates Tue Sep 26 01:15:47 UTC 2023 #195

Closed github-actions[bot] closed 10 months ago

github-actions[bot] commented 10 months ago

SHA256_DIGEST=de232952b41f9d0bea6a05d6a62b134652af61a156f2e844d22086c296a5c2d4 POSITION=1135561 DRIVER_VERSION=114.0.5735.90 PYTHON_VERSION=3.11.5 SELENIUM_VERSION=4.13.0 CHROME_VERSION=114.0.5735.0

diff --git a/Dockerfile b/Dockerfile index 6b28952..580a263 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,16 @@ -FROM public.ecr.aws/lambda/python@sha256:c80401611e707039b37b5cd24b21f01bbcfa2583030123aee375cbcfa5becd5d as build +FROM public.ecr.aws/lambda/python@sha256:de232952b41f9d0bea6a05d6a62b134652af61a156f2e844d22086c296a5c2d4 as build RUN yum install -y unzip && \ curl -Lo "/tmp/chromedriver.zip" "https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_linux64.zip" && \ curl -Lo "/tmp/chrome-linux.zip" "https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Linux_x64%2F1135561%2Fchrome-linux.zip?alt=media" && \ unzip /tmp/chromedriver.zip -d /opt/ && \ unzip /tmp/chrome-linux.zip -d /opt/

-FROM public.ecr.aws/lambda/python@sha256:c80401611e707039b37b5cd24b21f01bbcfa2583030123aee375cbcfa5becd5d +FROM public.ecr.aws/lambda/python@sha256:de232952b41f9d0bea6a05d6a62b134652af61a156f2e844d22086c296a5c2d4 RUN yum install atk cups-libs gtk3 libXcomposite alsa-lib \ libXcursor libXdamage libXext libXi libXrandr libXScrnSaver \ libXtst pango at-spi2-atk libXt xorg-x11-server-Xvfb \ xorg-x11-xauth dbus-glib dbus-glib-devel -y -RUN pip install selenium==4.12.0 +RUN pip install selenium==4.13.0 COPY --from=build /opt/chrome-linux /opt/chrome COPY --from=build /opt/chromedriver /opt/ COPY main.py ./ diff --git a/README.md b/README.md index f206ed2..6dc791b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ This image goes with these versions. [These are automatically updated and tested