Skip to content

Commit

Permalink
[DOCKER] upgrade from 23.10 to 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
chia7712 committed Jan 2, 2025
1 parent e4961ed commit b8be055
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker/start_broker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function generateDockerfileByVersion() {
kafka_url="https://dist.apache.org/repos/dist/dev/kafka/${KAFKA_VERSION}/kafka_2.13-${version}.tgz"
fi
echo "# this dockerfile is generated dynamically
FROM ubuntu:23.10 AS build
FROM ubuntu:24.04 AS build
# install tools
RUN apt-get update && apt-get install -y wget
Expand Down
2 changes: 1 addition & 1 deletion docker/start_controller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function generateDockerfileByVersion() {
kafka_url="https://dist.apache.org/repos/dist/dev/kafka/${KAFKA_VERSION}/kafka_2.13-${version}.tgz"
fi
echo "# this dockerfile is generated dynamically
FROM ubuntu:23.10 AS build
FROM ubuntu:24.04 AS build
# install tools
RUN apt-get update && apt-get install -y wget
Expand Down
4 changes: 2 additions & 2 deletions docker/start_hadoop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function showHelp() {

function generateDockerfile() {
echo "#this dockerfile is generated dynamically
FROM ubuntu:23.10 AS build
FROM ubuntu:24.04 AS build
#install tools
RUN apt-get update && apt-get install -y wget
Expand All @@ -75,7 +75,7 @@ RUN wget https://archive.apache.org/dist/hadoop/common/hadoop-${VERSION}/hadoop-
RUN mkdir /opt/hadoop
RUN tar -zxvf hadoop-${VERSION}.tar.gz -C /opt/hadoop --strip-components=1
FROM ubuntu:23.10
FROM ubuntu:24.04
#install tools
# TODO: upgrade to jdk 11 (https://github.com/opensource4you/astraea/issues/1681)
Expand Down
2 changes: 1 addition & 1 deletion docker/start_worker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function generateDockerfileByVersion() {
kafka_url="https://dist.apache.org/repos/dist/dev/kafka/${KAFKA_VERSION}/kafka_2.13-${version}.tgz"
fi
echo "# this dockerfile is generated dynamically
FROM ubuntu:23.10 AS build
FROM ubuntu:24.04 AS build
# install tools
RUN apt-get update && apt-get install -y wget
Expand Down
2 changes: 1 addition & 1 deletion docker/start_zookeeper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function showHelp() {

function generateDockerfile() {
echo "# this dockerfile is generated dynamically
FROM ubuntu:23.10 AS build
FROM ubuntu:24.04 AS build
# install tools
RUN apt-get update && apt-get install -y wget
Expand Down

0 comments on commit b8be055

Please sign in to comment.