chore: bump to python 3.12

This commit is contained in:
2024-01-26 12:43:20 +01:00
parent 1703bb356f
commit 31ceef93ae
3 changed files with 6 additions and 44 deletions

View File

@ -1,10 +1,10 @@
FROM docker.io/library/python:3.11-slim as base
FROM docker.io/library/python:3.12-slim as base
# Configure piwheels repo to use pre-compiled numpy wheels for arm
RUN echo -n "[global]\n" > /etc/pip.conf &&\
echo -n "extra-index-url = https://www.piwheels.org/simple https://git.cyrilix.bzh/api/packages/robocars/pypi/simple \n" >> /etc/pip.conf
RUN apt-get update && apt-get install -y libgl1 libglib2.0-0
RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 procps cmake g++ gcc
#################
FROM base as model-builder