Skip to content

Releases: umihico/docker-selenium-lambda

Version Updates Tue Dec 19 01:19:18 UTC 2023

19 Dec 01:19
6447039
Compare
Choose a tag to compare

SHA256_DIGEST=5f59359f025e159ac53ba7bc94d2d724b4d8fc0d5d17375b4b27fb70ae4fa15d
REVISION=1217362
PYTHON_VERSION=3.12.0
SELENIUM_VERSION=4.16.0
CHROME_VERSION=120.0.6099.109

diff --git a/Dockerfile b/Dockerfile
index 56ebe4a..610d843 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
-FROM public.ecr.aws/lambda/python@sha256:7a7b39f39c6cfd90ebd3cb5b94354d67500c381168ae51c0b78c3401f33462ab as build
+FROM public.ecr.aws/lambda/python@sha256:5f59359f025e159ac53ba7bc94d2d724b4d8fc0d5d17375b4b27fb70ae4fa15d as build
RUN dnf install -y unzip && \

-FROM public.ecr.aws/lambda/python@sha256:7a7b39f39c6cfd90ebd3cb5b94354d67500c381168ae51c0b78c3401f33462ab
+FROM public.ecr.aws/lambda/python@sha256:5f59359f025e159ac53ba7bc94d2d724b4d8fc0d5d17375b4b27fb70ae4fa15d
RUN dnf install -y atk cups-libs gtk3 libXcomposite alsa-lib
libXcursor libXdamage libXext libXi libXrandr libXScrnSaver
libXtst pango at-spi2-atk libXt xorg-x11-server-Xvfb
diff --git a/README.md b/README.md
index 8db3d19..4914545 100644
--- a/README.md
+++ b/README.md
@@ -8,8 +8,8 @@ This is minimum demo of headless chrome and selenium on container image on AWS L
This image goes with these versions. These are automatically updated and tested everyday.

  • Python 3.12.0
    -- chromium 120.0.6099.71
    -- chromedriver 120.0.6099.71
    +- chromium 120.0.6099.109
    +- chromedriver 120.0.6099.109
  • selenium 4.16.0

Running the demo

Version Updates Thu Dec 7 01:19:52 UTC 2023

07 Dec 01:19
92770fd
Compare
Choose a tag to compare

SHA256_DIGEST=7a7b39f39c6cfd90ebd3cb5b94354d67500c381168ae51c0b78c3401f33462ab
REVISION=1217362
PYTHON_VERSION=3.12.0
SELENIUM_VERSION=4.16.0
CHROME_VERSION=120.0.6099.71

diff --git a/Dockerfile b/Dockerfile
index 00f7159..56ebe4a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,16 +1,16 @@
-FROM public.ecr.aws/lambda/python@sha256:3cdaa29e3569901e27144ad78ecba00db1f43fe556c1b063574a8d0e18f34a1a as build
+FROM public.ecr.aws/lambda/python@sha256:7a7b39f39c6cfd90ebd3cb5b94354d67500c381168ae51c0b78c3401f33462ab as build
RUN dnf install -y unzip && \

-FROM public.ecr.aws/lambda/python@sha256:3cdaa29e3569901e27144ad78ecba00db1f43fe556c1b063574a8d0e18f34a1a
+FROM public.ecr.aws/lambda/python@sha256:7a7b39f39c6cfd90ebd3cb5b94354d67500c381168ae51c0b78c3401f33462ab
RUN dnf install -y 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 nss mesa-libgbm
-RUN pip install selenium==4.15.2
+RUN pip install selenium==4.16.0
COPY --from=build /opt/chrome-linux64 /opt/chrome
COPY --from=build /opt/chromedriver-linux64 /opt/
COPY main.py ./
diff --git a/README.md b/README.md
index 5788474..8db3d19 100644
--- a/README.md
+++ b/README.md
@@ -8,9 +8,9 @@ This is minimum demo of headless chrome and selenium on container image on AWS L
This image goes with these versions. These are automatically updated and tested everyday.

  • Python 3.12.0
    -- chromium 120.0.6099.62
    -- chromedriver 120.0.6099.62
    -- selenium 4.15.2
    +- chromium 120.0.6099.71
    +- chromedriver 120.0.6099.71
    +- selenium 4.16.0

Running the demo

Version Updates Wed Dec 6 01:20:30 UTC 2023

06 Dec 01:20
c71dcff
Compare
Choose a tag to compare

SHA256_DIGEST=3cdaa29e3569901e27144ad78ecba00db1f43fe556c1b063574a8d0e18f34a1a
REVISION=1217362
PYTHON_VERSION=3.12.0
SELENIUM_VERSION=4.15.2
CHROME_VERSION=120.0.6099.62

diff --git a/Dockerfile b/Dockerfile
index 0b11b69..00f7159 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
-FROM public.ecr.aws/lambda/python@sha256:fb31ca51357519a48a90f01a76e9d550778ecfcbe8d92dd832ec49b6672e387c as build
+FROM public.ecr.aws/lambda/python@sha256:3cdaa29e3569901e27144ad78ecba00db1f43fe556c1b063574a8d0e18f34a1a as build
RUN dnf install -y unzip && \

-FROM public.ecr.aws/lambda/python@sha256:fb31ca51357519a48a90f01a76e9d550778ecfcbe8d92dd832ec49b6672e387c
+FROM public.ecr.aws/lambda/python@sha256:3cdaa29e3569901e27144ad78ecba00db1f43fe556c1b063574a8d0e18f34a1a
RUN dnf install -y atk cups-libs gtk3 libXcomposite alsa-lib
libXcursor libXdamage libXext libXi libXrandr libXScrnSaver
libXtst pango at-spi2-atk libXt xorg-x11-server-Xvfb
diff --git a/README.md b/README.md
index 1d2e942..5788474 100644
--- a/README.md
+++ b/README.md
@@ -8,8 +8,8 @@ This is minimum demo of headless chrome and selenium on container image on AWS L
This image goes with these versions. These are automatically updated and tested everyday.

  • Python 3.12.0
    -- chromium 119.0.6045.105
    -- chromedriver 119.0.6045.105
    +- chromium 120.0.6099.62
    +- chromedriver 120.0.6099.62
  • selenium 4.15.2

Running the demo

Version Updates Tue Nov 21 14:19:20 UTC 2023

21 Nov 14:19
0b41c12
Compare
Choose a tag to compare

SHA256_DIGEST=fb31ca51357519a48a90f01a76e9d550778ecfcbe8d92dd832ec49b6672e387c
REVISION=1204232
PYTHON_VERSION=3.12.0
SELENIUM_VERSION=4.15.2
CHROME_VERSION=119.0.6045.105

diff --git a/Dockerfile b/Dockerfile
index b4437dd..0b11b69 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
-FROM public.ecr.aws/lambda/python@sha256:f0c3116a56d167eba8021a5d7c595f969835fbe78826303326f80de00d044733 as build
+FROM public.ecr.aws/lambda/python@sha256:fb31ca51357519a48a90f01a76e9d550778ecfcbe8d92dd832ec49b6672e387c as build
RUN dnf install -y unzip &&
curl -Lo "/tmp/chromedriver-linux64.zip" "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/119.0.6045.105/linux64/chromedriver-linux64.zip" &&
curl -Lo "/tmp/chrome-linux64.zip" "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/119.0.6045.105/linux64/chrome-linux64.zip" &&
unzip /tmp/chromedriver-linux64.zip -d /opt/ &&
unzip /tmp/chrome-linux64.zip -d /opt/

-FROM public.ecr.aws/lambda/python@sha256:f0c3116a56d167eba8021a5d7c595f969835fbe78826303326f80de00d044733
+FROM public.ecr.aws/lambda/python@sha256:fb31ca51357519a48a90f01a76e9d550778ecfcbe8d92dd832ec49b6672e387c
RUN dnf install -y atk cups-libs gtk3 libXcomposite alsa-lib
libXcursor libXdamage libXext libXi libXrandr libXScrnSaver
libXtst pango at-spi2-atk libXt xorg-x11-server-Xvfb
diff --git a/README.md b/README.md
index a94d433..1d2e942 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ This is minimum demo of headless chrome and selenium on container image on AWS L

This image goes with these versions. These are automatically updated and tested everyday.

-- Python 3.11.6
+- Python 3.12.0

  • chromium 119.0.6045.105
  • chromedriver 119.0.6045.105
  • selenium 4.15.2

Version Updates Sat Nov 4 01:15:16 UTC 2023

04 Nov 01:15
95ce892
Compare
Choose a tag to compare

SHA256_DIGEST=f0c3116a56d167eba8021a5d7c595f969835fbe78826303326f80de00d044733
REVISION=1204232
PYTHON_VERSION=3.11.6
SELENIUM_VERSION=4.15.2
CHROME_VERSION=119.0.6045.105

diff --git a/Dockerfile b/Dockerfile
index 9816420..c9f7ed2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,7 +10,7 @@ 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.15.1
+RUN pip install selenium==4.15.2
COPY --from=build /opt/chrome-linux64 /opt/chrome
COPY --from=build /opt/chromedriver-linux64 /opt/
COPY main.py ./
diff --git a/README.md b/README.md
index 4c7d0d8..a94d433 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ This image goes with these versions. [These are automatically updated and tested

  • Python 3.11.6
  • chromium 119.0.6045.105
  • chromedriver 119.0.6045.105
    -- selenium 4.15.1
    +- selenium 4.15.2

Running the demo

Version Updates Fri Nov 3 01:16:48 UTC 2023

03 Nov 01:16
c04ad50
Compare
Choose a tag to compare

SHA256_DIGEST=f0c3116a56d167eba8021a5d7c595f969835fbe78826303326f80de00d044733
REVISION=1204232
PYTHON_VERSION=3.11.6
SELENIUM_VERSION=4.15.1
CHROME_VERSION=119.0.6045.105

diff --git a/Dockerfile b/Dockerfile
index 9da98a8..9816420 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,7 +10,7 @@ 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.15.0
+RUN pip install selenium==4.15.1
COPY --from=build /opt/chrome-linux64 /opt/chrome
COPY --from=build /opt/chromedriver-linux64 /opt/
COPY main.py ./
diff --git a/README.md b/README.md
index 0fed612..4c7d0d8 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ This image goes with these versions. [These are automatically updated and tested

  • Python 3.11.6
  • chromium 119.0.6045.105
  • chromedriver 119.0.6045.105
    -- selenium 4.15.0
    +- selenium 4.15.1

Running the demo

Version Updates Thu Nov 2 01:16:03 UTC 2023

02 Nov 01:16
f0208a4
Compare
Choose a tag to compare

SHA256_DIGEST=f0c3116a56d167eba8021a5d7c595f969835fbe78826303326f80de00d044733
REVISION=1204232
PYTHON_VERSION=3.11.6
SELENIUM_VERSION=4.15.0
CHROME_VERSION=119.0.6045.105

diff --git a/Dockerfile b/Dockerfile
index d60473b..9da98a8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,16 +1,16 @@
-FROM public.ecr.aws/lambda/python@sha256:9782dd06c223ec295aa24ef875bbb72d2304b73766d8023b528f04d493cea6d0 as build
+FROM public.ecr.aws/lambda/python@sha256:f0c3116a56d167eba8021a5d7c595f969835fbe78826303326f80de00d044733 as build
RUN yum install -y unzip &&
curl -Lo "/tmp/chromedriver-linux64.zip" "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/119.0.6045.105/linux64/chromedriver-linux64.zip" &&
curl -Lo "/tmp/chrome-linux64.zip" "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/119.0.6045.105/linux64/chrome-linux64.zip" &&
unzip /tmp/chromedriver-linux64.zip -d /opt/ &&
unzip /tmp/chrome-linux64.zip -d /opt/

-FROM public.ecr.aws/lambda/python@sha256:9782dd06c223ec295aa24ef875bbb72d2304b73766d8023b528f04d493cea6d0
+FROM public.ecr.aws/lambda/python@sha256:f0c3116a56d167eba8021a5d7c595f969835fbe78826303326f80de00d044733
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.14.0
+RUN pip install selenium==4.15.0
COPY --from=build /opt/chrome-linux64 /opt/chrome
COPY --from=build /opt/chromedriver-linux64 /opt/
COPY main.py ./
diff --git a/README.md b/README.md
index 909bd24..0fed612 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ This image goes with these versions. [These are automatically updated and tested

  • Python 3.11.6
  • chromium 119.0.6045.105
  • chromedriver 119.0.6045.105
    -- selenium 4.14.0
    +- selenium 4.15.0

Running the demo

Version Updates Wed Nov 1 01:20:18 UTC 2023

01 Nov 01:20
cb4e1b8
Compare
Choose a tag to compare

SHA256_DIGEST=9782dd06c223ec295aa24ef875bbb72d2304b73766d8023b528f04d493cea6d0
REVISION=1204232
PYTHON_VERSION=3.11.6
SELENIUM_VERSION=4.14.0
CHROME_VERSION=119.0.6045.105

diff --git a/Dockerfile b/Dockerfile
index 1398f80..d60473b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
-FROM public.ecr.aws/lambda/python@sha256:a8770bd841c9caa98557ef7dc590bbd2707eb5ecab13bc8edbc81bf4961dca61 as build
+FROM public.ecr.aws/lambda/python@sha256:9782dd06c223ec295aa24ef875bbb72d2304b73766d8023b528f04d493cea6d0 as build
RUN yum install -y unzip && \

-FROM public.ecr.aws/lambda/python@sha256:a8770bd841c9caa98557ef7dc590bbd2707eb5ecab13bc8edbc81bf4961dca61
+FROM public.ecr.aws/lambda/python@sha256:9782dd06c223ec295aa24ef875bbb72d2304b73766d8023b528f04d493cea6d0
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
diff --git a/README.md b/README.md
index 290c367..909bd24 100644
--- a/README.md
+++ b/README.md
@@ -8,8 +8,8 @@ This is minimum demo of headless chrome and selenium on container image on AWS L
This image goes with these versions. These are automatically updated and tested everyday.

  • Python 3.11.6
    -- chromium 118.0.5993.70
    -- chromedriver 118.0.5993.70
    +- chromium 119.0.6045.105
    +- chromedriver 119.0.6045.105
  • selenium 4.14.0

Running the demo

Version Updates Mon Oct 16 12:11:07 UTC 2023

16 Oct 12:11
050165e
Compare
Choose a tag to compare

SHA256_DIGEST=a8770bd841c9caa98557ef7dc590bbd2707eb5ecab13bc8edbc81bf4961dca61
REVISION=1192594
PYTHON_VERSION=3.11.6
SELENIUM_VERSION=4.14.0
CHROME_VERSION=118.0.5993.70

diff --git a/Dockerfile b/Dockerfile
index 2b01156..1398f80 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
-FROM public.ecr.aws/lambda/python@sha256:0b8d0fa373384edace5d97e7f96e835fe43f065045a0bcb09e0dbc20fc33d351 as build
+FROM public.ecr.aws/lambda/python@sha256:a8770bd841c9caa98557ef7dc590bbd2707eb5ecab13bc8edbc81bf4961dca61 as build
RUN yum install -y unzip && \

-FROM public.ecr.aws/lambda/python@sha256:0b8d0fa373384edace5d97e7f96e835fe43f065045a0bcb09e0dbc20fc33d351
+FROM public.ecr.aws/lambda/python@sha256:a8770bd841c9caa98557ef7dc590bbd2707eb5ecab13bc8edbc81bf4961dca61
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
diff --git a/README.md b/README.md
index f3dfec9..290c367 100644
--- a/README.md
+++ b/README.md
@@ -8,8 +8,8 @@ This is minimum demo of headless chrome and selenium on container image on AWS L
This image goes with these versions. These are automatically updated and tested everyday.

  • Python 3.11.6
    -- chromium 114.0.5735.0
    -- chromedriver 114.0.5735.90
    +- chromium 118.0.5993.70
    +- chromedriver 118.0.5993.70
  • selenium 4.14.0

Running the demo

Version Updates Mon Oct 16 01:17:51 UTC 2023

16 Oct 01:17
679e408
Compare
Choose a tag to compare

SHA256_DIGEST=0b8d0fa373384edace5d97e7f96e835fe43f065045a0bcb09e0dbc20fc33d351
POSITION=1135561
DRIVER_VERSION=114.0.5735.90
PYTHON_VERSION=3.11.6
SELENIUM_VERSION=4.14.0
CHROME_VERSION=114.0.5735.0

diff --git a/Dockerfile b/Dockerfile
index b6a3a38..29b21d9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
-FROM public.ecr.aws/lambda/python@sha256:d8a8324834a079dbdfc6551831325113512a147bf70003622412565f216e36e0 as build
+FROM public.ecr.aws/lambda/python@sha256:0b8d0fa373384edace5d97e7f96e835fe43f065045a0bcb09e0dbc20fc33d351 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:d8a8324834a079dbdfc6551831325113512a147bf70003622412565f216e36e0
+FROM public.ecr.aws/lambda/python@sha256:0b8d0fa373384edace5d97e7f96e835fe43f065045a0bcb09e0dbc20fc33d351
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
diff --git a/README.md b/README.md
index cfa9406..35dabe5 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ This is minimum demo of headless chrome and selenium on container image on AWS L

This image goes with these versions. These are automatically updated and tested everyday.

-- Python 3.11.5
+- Python 3.11.6

  • chromium 114.0.5735.0
  • chromedriver 114.0.5735.90
  • selenium 4.14.0