celeste-zeng commented on code in PR #28036:
URL: https://github.com/apache/beam/pull/28036#discussion_r1296438161
##########
sdks/python/container/Dockerfile:
##########
@@ -80,6 +80,11 @@ RUN \
# Remove pip cache.
rm -rf /root/.cache/pip
+# Required for using Beam Python SDK on ARM machines.
+RUN if [ "${TARGETARCH}" = "arm64" ] ; then \
+ apt-get install libgeos-dev ; \
Review Comment:
- Tried to put it around line 42 earlier but I don't think the if condition
can be inserted between different package names after calling apt-get install.
- I can't run on this branch because it is just a fork of the apache/beam
master not the original master branch.
--
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]