utkarshparekh commented on code in PR #34144: URL: https://github.com/apache/beam/pull/34144#discussion_r1979933501
########## dev-support/docker/Dockerfile: ########## @@ -47,7 +47,10 @@ RUN apt -q update \ RUN mkdir /package COPY pkglist /package/pkglist -RUN apt-get -q install -y --no-install-recommends $(grep -v '^#' /package/pkglist | cat) +RUN apt-get -q install -y --no-install-recommends \ + $(grep -v '^#' /package/pkglist | grep -v 'python3.12-distutils' | cat) \ Review Comment: Thank you for the feedback, @Abacn! I agree that bumping the base image to a newer Ubuntu version (e.g., 24.04) is a more sustainable solution. To ensure compatibility, I’ll test the updated Dockerfile by: - Building the image locally with `docker build`. - Running the Beam environment setup (`./start-build-env.sh`) to verify the fix. - Executing the Java and Python `wordCount` examples (`./gradlew :examples:java:wordCount` and `./gradlew :sdks:python:wordCount`) to check downstream impact. I’ll submit an updated PR with these changes once testing is complete. Please let me know if you have a preferred Ubuntu version or additional tests to include! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
