Dockerfile 230 B

12345678
  1. FROM selenium/standalone-chrome:4.0.0-beta-4-20210608
  2. USER root
  3. RUN apt-get update
  4. RUN apt-get install python3-pip -y
  5. RUN pip3 install rpyc
  6. #RUN python3 -m pip install rpyc
  7. COPY rpyc_classic.py .
  8. CMD ["python3","rpyc_classic.py"]