Browse Source

add selenium to fly.dockerfile and release.dockerfile

Falko Schindler 10 months ago
parent
commit
a6623b245d
2 changed files with 4 additions and 2 deletions
  1. 2 1
      fly.dockerfile
  2. 2 1
      release.dockerfile

+ 2 - 1
fly.dockerfile

@@ -15,7 +15,8 @@ RUN pip install \
     prometheus_client \
     pyecharts \
     pytest \
-    requests
+    requests \
+    selenium
 
 RUN curl -sSL https://install.python-poetry.org | python3 - && \
     cd /usr/local/bin && \

+ 2 - 1
release.dockerfile

@@ -25,7 +25,8 @@ RUN python -m pip install \
     isort \
     itsdangerous \
     pytest \
-    requests
+    requests \
+    selenium
 
 WORKDIR /app