mirror of
https://github.com/nicolabs/nicobot.git
synced 2025-09-05 17:15:36 +02:00
chaining again apt-get update & install to make sure packages are up to date
This commit is contained in:
parent
b42b078cfd
commit
fb3e359eb1
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue