From 0a1f221b409d13757786e993f1099b378563bd1c Mon Sep 17 00:00:00 2001 From: shockrah Date: Fri, 29 Mar 2024 15:42:09 -0700 Subject: [PATCH] Selnium with python3 --- selenium/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/selenium/Dockerfile b/selenium/Dockerfile index 6cc4d2c..eb0b422 100644 --- a/selenium/Dockerfile +++ b/selenium/Dockerfile @@ -1,4 +1,6 @@ -FROM selnium/standalone-firefox +FROM selenium/standalone-firefox -RUN sudo apt install -y python3-pip python-venv +RUN sudo apt update && \ + sudo apt install -y python3-pip python3-venv && \ + sudo apt-get clean && sudo rm -rf /var/cache/apt/archives /var/lib/apt/lists