From fb3e359eb1b336200cd0cdfc2d3414b5d9000368 Mon Sep 17 00:00:00 2001 From: nicobo Date: Tue, 19 Jan 2021 12:21:50 +0100 Subject: [PATCH] chaining again apt-get update & install to make sure packages are up to date --- debian.Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian.Dockerfile b/debian.Dockerfile index 512102c..075b6ad 100644 --- a/debian.Dockerfile +++ b/debian.Dockerfile @@ -4,9 +4,9 @@ FROM python:3 as builder -RUN apt-get update -# The following fails on arm : https://github.com/docker/buildx/issues/495 -RUN apt-get install -y \ +RUN apt-get update && \ + # The following fails on arm : https://github.com/docker/buildx/issues/495 + apt-get install -y \ # "make" tools required to compile the Python modules # not all may be required on all platforms... cmake g++ make \