chaining again apt-get update & install to make sure packages are up to date

This commit is contained in:
nicobo 2021-01-19 12:21:50 +01:00
parent b42b078cfd
commit fb3e359eb1
No known key found for this signature in database
GPG key ID: 2581E71C5FA5285F

View file

@ -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 \