From 1896c09bf3be599b44538cb9450fd7c476def2f8 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Fri, 15 Jul 2022 20:42:11 +0200 Subject: [PATCH] Add missing build-essential dependency --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 582f020..3c1a83b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ RUN addgroup --system --gid ${WEEWX_UID} weewx \ # Install installation dependencies RUN apt-get update -qq -y &&\ DEBIAN_FRONTEND=noninteractive apt-get install -y \ + build-essential \ unzip \ wget \ -qq -y --no-install-recommends &&\