Skip to content

Instantly share code, notes, and snippets.

@horitaku1124
Created October 16, 2018 22:42
Show Gist options
  • Save horitaku1124/1ff2c07e73690cad6e514d37e04dd62e to your computer and use it in GitHub Desktop.
Save horitaku1124/1ff2c07e73690cad6e514d37e04dd62e to your computer and use it in GitHub Desktop.
to build SeleniumIDE
# docker build . -t selenium_build -f Dockerfile
FROM ubuntu:18.04
RUN apt update
RUN apt install -y git yarn python3 python3-pip npm curl
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt update
RUN apt install -y yarn
RUN pip3 install peru
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment