From d202a0da279c191dbfcec0d58939f918984eb8f0 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Thu, 29 Jan 2026 10:18:08 -0500 Subject: [PATCH] Add Apache Beam installation to Dockerfile Install Apache Beam with GCP and interactive options. --- playground/backend/containers/python/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playground/backend/containers/python/Dockerfile b/playground/backend/containers/python/Dockerfile index dc734fe34d2f..5c43f6e0c0b2 100644 --- a/playground/backend/containers/python/Dockerfile +++ b/playground/backend/containers/python/Dockerfile @@ -73,6 +73,8 @@ RUN groupadd --gid 20000 appgroup \ RUN mkdir -p /opt/playground/backend/executable_files/ +RUN pip install apache-beam[gcp,interactive]==$BEAM_VERSION + # Chown all required files to the `appuser`. RUN chown -R appuser:appgroup /opt/playground/backend/executable_files/ && chmod +x /entrypoint.sh