From b9ae73e322c177f7a163ccd33f3b2019135a1114 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 6 Jan 2024 03:17:50 +0100 Subject: [PATCH] build: Remove apt-get upgrade (#543) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 651da95..0a6857f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,8 @@ ARG TARGETPLATFORM ARG DEBCONF_NOWARNINGS="yes" ARG DEBIAN_FRONTEND noninteractive -RUN apt-get update && apt-get -y upgrade \ - && if [ "$TARGETPLATFORM" != "linux/amd64" ]; then extra="qemu-user"; fi \ +RUN if [ "$TARGETPLATFORM" != "linux/amd64" ]; then extra="qemu-user"; fi \ + && apt-get update \ && apt-get --no-install-recommends -y install \ jq \ tini \