5 lines
76 B
Docker
5 lines
76 B
Docker
FROM python:alpine
|
|
|
|
USER root
|
|
RUN python3 -m pip install selenium
|
|
WORKDIR /
|