Added package upgrade to Dockerfile

This commit is contained in:
Dan Elbert 2019-09-13 11:46:24 -05:00
parent 474e417dca
commit eeb8e84344

View File

@ -7,6 +7,7 @@ CMD ["/sbin/my_init"]
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \
apt-get update && \
apt-get -y dist-upgrade && \
apt-get install -y --no-install-recommends yarn && \
apt-get clean && rm -rf /var/lib/apt/lists/*