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