FROM ubuntu:18.04 ADD npmrc /root/.npmrc RUN apt-get update && apt-get install -y \ build-essential \ gettext-base \ git \ jq \ sed \ ca-certificates-java \ ca-certificates \ openjdk-17-jdk \ openjdk-17-source \ curl \ xvfb \ icewm RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \ && apt-get install -y nodejs RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ && apt-get update \ && apt-get install -y yarn # Install Google Chrome RUN curl -sS https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ && sh -c 'echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ && apt-get update && apt-get install -y google-chrome-stable RUN npm install -g vsce RUN npm install -g ovsx RUN yarn global add lerna CMD /bin/bash