diff --git a/Dockerfile b/Dockerfile index ed136d9..cd2efa3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,8 @@ ENV KAFKA_VERSION=3.6.1 RUN curl -L https://www.archlinux.org/mirrorlist/\?country\=US\&protocol=http\&protocol\=https\&ip_version\=4 | sed -e 's/^#Server/Server/' -e '/^#/d' | tee /etc/pacman.d/mirrorlist && \ pacman -Syu --noconfirm && \ ln -snf /usr/share/zoneinfo/US/Pacific /etc/localtime && \ - pacman --noconfirm -S dnsutils netcat curl neovim zsh jq aws-cli-v2 kubectl jre-openjdk tcpdump postgresql rclone sshpass sysstat && \ + pacman --noconfirm -S dnsutils netcat curl neovim zsh jq aws-cli-v2 kubectl jre-openjdk tcpdump \ + mysql postgresql rclone sshpass sysstat && \ curl -LO https://apache.osuosl.org/kafka/$KAFKA_VERSION/kafka_2.13-$KAFKA_VERSION.tgz && \ tar xzvf kafka_2.13-$KAFKA_VERSION.tgz && \ mv kafka_2.13-$KAFKA_VERSION /opt/kafka && \