Add bzip2 to fix issues with installing JS packages in Docker

This commit is contained in:
Matt Isenhower
2017-08-02 20:20:26 -07:00
parent 2123fe60dd
commit 0e9f114f71

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