From 02e029d5a2650d0bc322e2dcd21311f18e553752 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 5 Oct 2022 12:22:37 -0400 Subject: [PATCH] add back recommended deps --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 15de737..3fec2e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ENV HOME="/config" RUN \ echo "**** install runtime dependencies ****" && \ apt-get update && \ - apt-get install -y --no-install-recommends \ + apt-get install -y \ git \ jq \ libatomic1 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 88bf49b..78abf43 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -14,7 +14,7 @@ ENV HOME="/config" RUN \ echo "**** install runtime dependencies ****" && \ apt-get update && \ - apt-get install -y --no-install-recommends \ + apt-get install -y \ git \ jq \ libatomic1 \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index d37cdce..c449963 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -14,7 +14,7 @@ ENV HOME="/config" RUN \ echo "**** install runtime dependencies ****" && \ apt-get update && \ - apt-get install -y --no-install-recommends \ + apt-get install -y \ git \ jq \ libatomic1 \