From 293d14b02f81a031fc25bcc8e4f150079aab7bce Mon Sep 17 00:00:00 2001 From: Jesse Dearing Date: Fri, 8 Mar 2024 14:53:13 -0800 Subject: [PATCH] Add MySQL --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 && \