From e0feaaa88d6f146a6ff6d675959ca5132968686a Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Fri, 18 Jun 2021 10:53:54 +0100 Subject: [PATCH] feat: add `apt-get dist-upgrade` Ensures all packages are always up-to-date. PR: https://github.com/zmkfirmware/zmk-docker/pull/90 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 31ce40c5..ff9d0644 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ ARG ZEPHYR_VERSION ENV ZEPHYR_VERSION=${ZEPHYR_VERSION} RUN \ apt-get -y update \ + && apt-get dist-upgrade -y \ && apt-get -y install --no-install-recommends \ ccache \ cmake \