This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch users/damccorm/pg-interactive in repository https://gitbox.apache.org/repos/asf/beam.git
commit d202a0da279c191dbfcec0d58939f918984eb8f0 Author: Danny McCormick <[email protected]> AuthorDate: Thu Jan 29 10:18:08 2026 -0500 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 dc734fe34d2..5c43f6e0c0b 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
