Created
October 16, 2018 22:42
-
-
Save horitaku1124/1ff2c07e73690cad6e514d37e04dd62e to your computer and use it in GitHub Desktop.
to build SeleniumIDE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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