7 lines
189 B
Docker
7 lines
189 B
Docker
FROM selenium/standalone-firefox
|
|
|
|
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
|
|
|