You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2022/11/10 22:28:50 UTC

[beam] branch master updated: fixing linter error (#24104)

This is an automated email from the ASF dual-hosted git repository.

damccorm 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 a4a94da1936 fixing linter error (#24104)
a4a94da1936 is described below

commit a4a94da1936d8cd2f8d1145fd2e8329fe06a2990
Author: Oleh Borysevych <ol...@akvelon.com>
AuthorDate: Fri Nov 11 00:28:43 2022 +0200

    fixing linter error (#24104)
---
 playground/backend/containers/java/Dockerfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/playground/backend/containers/java/Dockerfile b/playground/backend/containers/java/Dockerfile
index 6c141617b89..b15807ce397 100644
--- a/playground/backend/containers/java/Dockerfile
+++ b/playground/backend/containers/java/Dockerfile
@@ -38,7 +38,8 @@ RUN go mod download &&\
     go build -o /go/bin/server_java_backend
 
 FROM $BASE_IMAGE
-ARG BEAM_VERSION
+# docker linter we use doesn't allow to have ARG declaration without value although it's a valid syntax
+ARG BEAM_VERSION=2.42.0
 ARG HAMCREST_VERSION=1.3
 ARG JUNIT_VERSION=4.13.2
 ARG GRPC_VERSION=1_48_1