File tree Expand file tree Collapse file tree
playground/backend/containers/python Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,14 +65,16 @@ RUN cd /opt/playground/backend/kafka-emulator/ && tar -xvf kafka-emulator.tar &&
6565 mv kafka-emulator/*.jar . && rmdir kafka-emulator/ &&\
6666 mv beam-playground-kafka-emulator-*.jar beam-playground-kafka-emulator.jar
6767RUN apt-get update && \
68- apt install openjdk-17-jre-headless -y
68+ apt install openjdk-17-jre-headless -y
6969
7070# Create a user group `appgroup` and a user `appuser`
7171RUN groupadd --gid 20000 appgroup \
7272 && useradd --uid 20000 --gid appgroup --shell /bin/bash --create-home appuser
7373
7474RUN mkdir -p /opt/playground/backend/executable_files/
7575
76+ RUN pip install apache-beam[gcp,interactive]==$BEAM_VERSION
77+
7678# Chown all required files to the `appuser`.
7779RUN chown -R appuser:appgroup /opt/playground/backend/executable_files/ && chmod +x /entrypoint.sh
7880
You can’t perform that action at this time.
0 commit comments