Created
April 11, 2018 14:24
-
-
Save horitaku1124/469b54e0e667ffc56c376dc67ac25353 to your computer and use it in GitHub Desktop.
build selenium-ide
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
FROM ubuntu:17.10 | |
RUN apt update | |
RUN apt install curl git python3 python3-pip -y | |
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash | |
RUN export NVM_DIR="$HOME/.nvm" | |
RUN [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
RUN [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" | |
RUN nvm install node | |
RUN npm install yarn -g | |
RUN pip3 install peru | |
WORKDIR /root | |
RUN git clone https://github.com/SeleniumHQ/selenium-ide.git | |
WORKDIR /root/selenium-ide | |
RUN peru sync | |
RUN yarn | |
RUN yarn build:ext:prod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment