Add dependency required for building the favicons with Webpack

This commit is contained in:
Matt Isenhower 2017-08-06 14:07:01 -07:00
parent c9db0cfe6e
commit 4ce20f76a2

View File

@ -7,7 +7,7 @@ RUN apt-get update \
&& 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 nodejs yarn bzip2
&& apt-get install -y nodejs yarn bzip2 libfontconfig
WORKDIR /app
CMD ["yarn", "start"]