This is an automated email from the ASF dual-hosted git repository.
jrmccluskey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new e28e00ac608 Fix installation invocation for OpenJDK (#31752)
e28e00ac608 is described below
commit e28e00ac60840535fd60596237223faf10c84c77
Author: Jack McCluskey <[email protected]>
AuthorDate: Tue Jul 2 15:35:36 2024 -0400
Fix installation invocation for OpenJDK (#31752)
---
playground/backend/containers/python/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/playground/backend/containers/python/Dockerfile
b/playground/backend/containers/python/Dockerfile
index b617e02b15c..ca57bef9025 100644
--- a/playground/backend/containers/python/Dockerfile
+++ b/playground/backend/containers/python/Dockerfile
@@ -66,7 +66,7 @@ RUN cd /opt/playground/backend/kafka-emulator/ && tar -xvf
kafka-emulator.tar &&
mv beam-playground-kafka-emulator-*.jar beam-playground-kafka-emulator.jar
RUN apt-get update && \
wget
http://http.us.debian.org/debian/pool/main/o/openjdk-11/openjdk-11-jre-headless_11.0.23+9-1~deb11u1_amd64.deb
&& \
- apt install -y ./openjdk-11-jre-headless_11.0.22+7-1~deb11u1_amd64.deb
+ apt install -y ./openjdk-11-jre-headless_11.0.23+9-1~deb11u1_amd64.deb
# Create a user group `appgroup` and a user `appuser`
RUN groupadd --gid 20000 appgroup \