We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd7cc24 commit 356bf3dCopy full SHA for 356bf3d
sdks/python/container/Dockerfile
@@ -40,6 +40,8 @@ RUN \
40
libyaml-dev \
41
# This is used to speed up the re-installation of the sdk.
42
ccache \
43
+ # Required for using Beam Python SDK on ARM machines.
44
+ libgeos-dev \
45
&& \
46
rm -rf /var/lib/apt/lists/* && \
47
@@ -80,12 +82,6 @@ RUN \
80
82
# Remove pip cache.
81
83
rm -rf /root/.cache/pip
84
-# Required for using Beam Python SDK on ARM machines.
-RUN if [ "${TARGETARCH}" = "arm64" ] ; then \
85
- apt-get update && \
86
- apt-get install libgeos-dev ; \
87
- fi
88
-
89
ENTRYPOINT ["/opt/apache/beam/boot"]
90
91
####
0 commit comments