Skip to content

Instantly share code, notes, and snippets.

@horitaku1124
Created April 11, 2018 14:24
Show Gist options
  • Save horitaku1124/469b54e0e667ffc56c376dc67ac25353 to your computer and use it in GitHub Desktop.
Save horitaku1124/469b54e0e667ffc56c376dc67ac25353 to your computer and use it in GitHub Desktop.
build selenium-ide
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