Update scripts

This commit is contained in:
Pascal Vizeli 2017-05-14 01:31:40 +02:00
parent 05783ea334
commit 6e96cb0b9c
4 changed files with 5 additions and 3 deletions

View file

@ -4,6 +4,7 @@ FROM ubuntu:16.04
RUN apt-get update && apt-get install -y \
locales \
curl \
git \
apt-transport-https \
&& rm -rf /var/lib/apt/lists/* \
&& ln -s /usr/bin/nodejs /usr/bin/node
@ -12,7 +13,7 @@ ENV LANG en_US.UTF-8
# install yaml
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
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update && apt-get install -y \
nodejs \
npm \