Browse Source

[Improvement-11834] Upgrade docker base image to support python3.9 (#11835)

* use openjdk:8-jre-slim-bullseye instead of buster to support python3.9

* use openjdk:8-jre-slim-bullseye instead of buster across all components
3.2.0-release
Daniel Y 2 years ago committed by GitHub
parent
commit
009cb68011
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/cluster-test/mysql/Dockerfile
  2. 2
      .github/workflows/cluster-test/postgresql/Dockerfile
  3. 2
      dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/docker/Dockerfile
  4. 2
      dolphinscheduler-api/src/main/docker/Dockerfile
  5. 2
      dolphinscheduler-master/src/main/docker/Dockerfile
  6. 2
      dolphinscheduler-standalone-server/src/main/docker/Dockerfile
  7. 2
      dolphinscheduler-tools/src/main/docker/Dockerfile
  8. 2
      dolphinscheduler-worker/src/main/docker/Dockerfile

2
.github/workflows/cluster-test/mysql/Dockerfile

@ -15,7 +15,7 @@
# limitations under the License.
#
FROM openjdk:8-jre-slim-buster
FROM openjdk:8-jre-slim-bullseye
RUN apt update ; \
apt install -y curl wget default-mysql-client sudo openssh-server netcat-traditional ;

2
.github/workflows/cluster-test/postgresql/Dockerfile

@ -15,7 +15,7 @@
# limitations under the License.
#
FROM openjdk:8-jre-slim-buster
FROM openjdk:8-jre-slim-bullseye
RUN apt update ; \
apt install -y curl wget sudo openssh-server netcat-traditional ;

2
dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/docker/Dockerfile

@ -15,7 +15,7 @@
# limitations under the License.
#
FROM openjdk:8-jre-slim-buster
FROM openjdk:8-jre-slim-bullseye
ENV DOCKER true
ENV TZ Asia/Shanghai

2
dolphinscheduler-api/src/main/docker/Dockerfile

@ -15,7 +15,7 @@
# limitations under the License.
#
FROM openjdk:8-jre-slim-buster
FROM openjdk:8-jre-slim-bullseye
ENV DOCKER true
ENV TZ Asia/Shanghai

2
dolphinscheduler-master/src/main/docker/Dockerfile

@ -15,7 +15,7 @@
# limitations under the License.
#
FROM openjdk:8-jre-slim-buster
FROM openjdk:8-jre-slim-bullseye
ENV DOCKER true
ENV TZ Asia/Shanghai

2
dolphinscheduler-standalone-server/src/main/docker/Dockerfile

@ -15,7 +15,7 @@
# limitations under the License.
#
FROM openjdk:8-jre-slim-buster
FROM openjdk:8-jre-slim-bullseye
ENV DOCKER true
ENV TZ Asia/Shanghai

2
dolphinscheduler-tools/src/main/docker/Dockerfile

@ -15,7 +15,7 @@
# limitations under the License.
#
FROM openjdk:8-jre-slim-buster
FROM openjdk:8-jre-slim-bullseye
ENV DOCKER true
ENV TZ Asia/Shanghai

2
dolphinscheduler-worker/src/main/docker/Dockerfile

@ -15,7 +15,7 @@
# limitations under the License.
#
FROM openjdk:8-jre-slim-buster
FROM openjdk:8-jre-slim-bullseye
ENV DOCKER true
ENV TZ Asia/Shanghai

Loading…
Cancel
Save