This is an automated email from the ASF dual-hosted git repository.
tvalentyn 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 20e79d1 Updated the base images to use debian:bullseye (#16221)
20e79d1 is described below
commit 20e79d198eec809733172c520c1891a4f2986153
Author: Anand Inguva <[email protected]>
AuthorDate: Tue Dec 14 17:31:34 2021 -0500
Updated the base images to use debian:bullseye (#16221)
---
playground/backend/containers/go/Dockerfile | 2 +-
playground/backend/containers/go/build.gradle | 2 +-
playground/backend/containers/java/Dockerfile | 2 +-
playground/backend/containers/python/Dockerfile | 2 +-
playground/backend/containers/python/build.gradle | 2 +-
release/go-licenses/Dockerfile | 2 +-
sdks/go/container/Dockerfile | 2 +-
sdks/java/container/Dockerfile | 2 +-
sdks/python/container/Dockerfile | 2 +-
9 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/playground/backend/containers/go/Dockerfile
b/playground/backend/containers/go/Dockerfile
index 45f2cea..d9d4548 100644
--- a/playground/backend/containers/go/Dockerfile
+++ b/playground/backend/containers/go/Dockerfile
@@ -16,7 +16,7 @@
# limitations under the License.
###############################################################################
#Dokerfile to set up the Beam Go SDK
-ARG BASE_IMAGE=golang:1.16-buster
+ARG BASE_IMAGE=golang:1.16-bullseye
FROM $BASE_IMAGE
# Setup Go Environment
diff --git a/playground/backend/containers/go/build.gradle
b/playground/backend/containers/go/build.gradle
index 1179a7f..534bab6 100644
--- a/playground/backend/containers/go/build.gradle
+++ b/playground/backend/containers/go/build.gradle
@@ -59,7 +59,7 @@ docker {
tags containerImageTags()
buildArgs(['BASE_IMAGE': project.rootProject.hasProperty(["base-image"]) ?
project.rootProject["base-image"] :
- "golang:1.16-buster" ])
+ "golang:1.16-bullseye" ])
}
// Ensure that we build the required resources and copy and file dependencies
from related projects
diff --git a/playground/backend/containers/java/Dockerfile
b/playground/backend/containers/java/Dockerfile
index 06571a7..ac1d78b 100644
--- a/playground/backend/containers/java/Dockerfile
+++ b/playground/backend/containers/java/Dockerfile
@@ -16,7 +16,7 @@
# limitations under the License.
###############################################################################
ARG BASE_IMAGE=apache/beam_java8_sdk:latest
-FROM golang:1.17-buster AS build
+FROM golang:1.17-bullseye AS build
# Setup Go Environment
ENV GOPATH /go
diff --git a/playground/backend/containers/python/Dockerfile
b/playground/backend/containers/python/Dockerfile
index 6ce0c8a..29d25a1 100644
--- a/playground/backend/containers/python/Dockerfile
+++ b/playground/backend/containers/python/Dockerfile
@@ -16,7 +16,7 @@
# limitations under the License.
###############################################################################
ARG BASE_IMAGE=apache/beam_python3.7_sdk:latest
-ARG GO_BASE_IMAGE=golang:1.17-buster
+ARG GO_BASE_IMAGE=golang:1.17-bullseye
FROM $GO_BASE_IMAGE AS build
# Setup Go Environment
diff --git a/playground/backend/containers/python/build.gradle
b/playground/backend/containers/python/build.gradle
index 7084292..a859459 100644
--- a/playground/backend/containers/python/build.gradle
+++ b/playground/backend/containers/python/build.gradle
@@ -66,7 +66,7 @@ docker {
"apache/beam_python3.7_sdk" ])
buildArgs(['GO_BASE_IMAGE':
project.rootProject.hasProperty(["go-base-image"]) ?
project.rootProject["go-base-image"] :
- "golang:1.17-buster" ])
+ "golang:1.17-bullseye" ])
}
// Ensure that we build the required resources and copy and file dependencies
from related projects
diff --git a/release/go-licenses/Dockerfile b/release/go-licenses/Dockerfile
index 6004f45..28e141b 100644
--- a/release/go-licenses/Dockerfile
+++ b/release/go-licenses/Dockerfile
@@ -16,7 +16,7 @@
# limitations under the License.
###############################################################################
-FROM golang:1.16.0-buster
+FROM golang:1.16-bullseye
RUN go get github.com/google/go-licenses
COPY get-licenses.sh /opt/apache/beam/
ARG sdk_location
diff --git a/sdks/go/container/Dockerfile b/sdks/go/container/Dockerfile
index b9ed238..f34197d 100644
--- a/sdks/go/container/Dockerfile
+++ b/sdks/go/container/Dockerfile
@@ -16,7 +16,7 @@
# limitations under the License.
###############################################################################
-FROM debian:buster
+FROM debian:bullseye
MAINTAINER "Apache Beam <[email protected]>"
ARG pull_licenses
diff --git a/sdks/java/container/Dockerfile b/sdks/java/container/Dockerfile
index 1330cfd..b5baf8f 100644
--- a/sdks/java/container/Dockerfile
+++ b/sdks/java/container/Dockerfile
@@ -16,7 +16,7 @@
# limitations under the License.
###############################################################################
ARG java_version
-FROM openjdk:${java_version}
+FROM openjdk:${java_version}-bullseye
MAINTAINER "Apache Beam <[email protected]>"
ARG pull_licenses
diff --git a/sdks/python/container/Dockerfile b/sdks/python/container/Dockerfile
index ec58eab..b97cb3a 100644
--- a/sdks/python/container/Dockerfile
+++ b/sdks/python/container/Dockerfile
@@ -17,7 +17,7 @@
###############################################################################
ARG py_version
-FROM python:"${py_version}"-buster as beam
+FROM python:"${py_version}"-bullseye as beam
MAINTAINER "Apache Beam <[email protected]>"
# Install native bindings required for dependencies.