From 537f00debf8aa8f54a982c5c479dff800b18eabc Mon Sep 17 00:00:00 2001 From: Chengyou Liu Date: Thu, 29 Feb 2024 10:59:34 +0800 Subject: [PATCH 1/2] add sql clients in sysbench image --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 55cc6fc7..3f54b94a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,9 @@ FROM ubuntu:22.04 RUN apt-get update +# Install MySQL and PostgreSQL clients +RUN apt-get update -yy && DEBIAN_FRONTEND=noninteractive apt-get -y install postgresql-client mysql-client + RUN apt-get -y install make automake libtool pkg-config libaio-dev git # For MySQL support From 157c7f7d28368e3848d029e9203364bde572a99a Mon Sep 17 00:00:00 2001 From: Chengyou Liu <35356271+cyliu0@users.noreply.github.com> Date: Thu, 29 Feb 2024 11:09:12 +0800 Subject: [PATCH 2/2] Update Dockerfile Co-authored-by: Huangjw <1223644280@qq.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3f54b94a..af21f5ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:22.04 RUN apt-get update # Install MySQL and PostgreSQL clients -RUN apt-get update -yy && DEBIAN_FRONTEND=noninteractive apt-get -y install postgresql-client mysql-client +RUN apt-get -y install postgresql-client mysql-client RUN apt-get -y install make automake libtool pkg-config libaio-dev git