Update python image in dockerfile

This commit is contained in:
Keannu Christian Bernasol 2023-12-28 11:32:21 +08:00
parent 20debf7d45
commit fffe3c7145
2 changed files with 9 additions and 12 deletions

View file

@ -1,12 +1,13 @@
# Use the official Python 3.11 image
# FROM --platform=arm64 python:3.11.4-bookworm
FROM --platform=arm64 python:3.11.7-bullseye
# ARG BUILDPLATFORM
FROM python:3.11.4-bookworm
# FROM python:3.11.7-bullseye
ENV PYTHONBUFFERED 1
RUN apt-get update
# Install necessary dependencies, including cmake
RUN apt-get update && apt-get install -y \
RUN apt-get install -y \
wget \
tar \
cmake \