This is an automated email from the ASF dual-hosted git repository.
Amar3tto pushed a commit to branch fix-scio
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/fix-scio by this push:
new 91ca5139b39 Use sbt 1.x
91ca5139b39 is described below
commit 91ca5139b396774610a5444accff69f32ae7e215
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Sat Jul 11 09:30:06 2026 +0400
Use sbt 1.x
---
playground/backend/containers/scio/Dockerfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/playground/backend/containers/scio/Dockerfile
b/playground/backend/containers/scio/Dockerfile
index 84a1be5fe52..526789d75dc 100644
--- a/playground/backend/containers/scio/Dockerfile
+++ b/playground/backend/containers/scio/Dockerfile
@@ -15,7 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
###############################################################################
-ARG BASE_IMAGE=eclipse-temurin:17
+ARG BASE_IMAGE=eclipse-temurin:11
FROM golang:1-bullseye AS build
ARG GIT_COMMIT="<unknown>"
ARG GIT_TIMESTAMP="0"
@@ -52,7 +52,7 @@ COPY --from=build
/go/src/playground/backend/new_scio_project.sh /opt/playground
COPY --from=build
/go/src/playground/backend/internal/fs_tool/ExampleData.scala
/opt/playground/backend/
RUN chmod +x /opt/playground/backend/new_scio_project.sh
-# Install sbt
+# Install sbt 1.x
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
@@ -65,7 +65,7 @@ RUN apt-get update \
&& echo "deb [signed-by=/etc/apt/keyrings/scalasbt.gpg]
https://repo.scala-sbt.org/scalasbt/debian all main" \
> /etc/apt/sources.list.d/sbt.list \
&& apt-get update \
- && apt-get install -y --no-install-recommends sbt \
+ && apt-get install -y --no-install-recommends sbt=1.10.11 \
&& rm -rf /var/lib/apt/lists/*
COPY src/properties.yaml /opt/playground/backend/properties.yaml