Draft
Conversation
stuartleeks
reviewed
Feb 27, 2025
Collaborator
There was a problem hiding this comment.
Thanks @liammoat
Out of interest, does it work if you use the slim base image and leave the gcc install in the Dockerfile? (i.e. use python:3.12.1-slim-bookworm as the base)
Just asking as the slim base image looks quite a bit smaller
python 3.12.1-bookworm 86ac1e3337a9 14 months ago 1.02GB
python 3.12.1-slim-bookworm 16c231298165 14 months ago 130MB
python 3.12.1-slim-bullseye 3cdb808fdc5f 14 months ago 127MB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We have recently run into issues running the simulator on ARM. This is due to a "Hash Sum mismatch" error that occurs during the Docker build process, because of
RUN apt-get update && apt-get install -y gcc python3-dev.This PR includes a change to the
Dockerfileto update of the base image frompython:3.12.1-slim-bullseyetopython:3.12.1-bookworm.In testing, no other installs / packages are required.