Merge pull request #2588 from coreos-inc/fix-yarn-dockerfile

Lock yarn version to fix breakage
This commit is contained in:
josephschorr 2017-04-27 14:10:51 -04:00 committed by GitHub
commit 66b98e5380

View file

@ -14,7 +14,7 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
# Install system packages # Install system packages
RUN apt-get update && apt-get upgrade -y # 23MAR2017 RUN apt-get update && apt-get upgrade -y # 27APR2017
RUN apt-get install -y \ RUN apt-get install -y \
dnsmasq \ dnsmasq \
g++ \ g++ \
@ -46,7 +46,7 @@ RUN apt-get install -y \
python-dev \ python-dev \
python-pip \ python-pip \
python-virtualenv \ python-virtualenv \
yarn \ yarn=0.22.0-1 \
w3m w3m
# Install python dependencies # Install python dependencies