26 lines
539 B
Docker
26 lines
539 B
Docker
FROM ubuntu:18.04
|
|
|
|
ADD npmrc /root/.npmrc
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
gettext-base \
|
|
git \
|
|
jq \
|
|
openjdk-8-jdk \
|
|
curl \
|
|
xvfb \
|
|
icewm
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_8.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
|
|
|
|
RUN npm install -g vsce
|
|
|
|
CMD /bin/bash
|