From 112723cba2d7864e0222345516adb1da56ed7211 Mon Sep 17 00:00:00 2001 From: shockrah Date: Thu, 29 Apr 2021 22:49:08 -0700 Subject: [PATCH] * Fixing issue bad apt-get invocation(missing apt-get update) before mysql installation --- freechat-pipeline/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freechat-pipeline/Dockerfile b/freechat-pipeline/Dockerfile index 790e9b1..1a8bd2d 100644 --- a/freechat-pipeline/Dockerfile +++ b/freechat-pipeline/Dockerfile @@ -37,7 +37,7 @@ RUN mkdir /opt/mysql-setup && \ apt-get update && \ apt-get install /opt/mysql-setup/mysql-apt-config_0.8.17-1_all.deb \ -y --no-install-recommends && \ - apt-get install mysql-community-server && \ + apt-get update && apt-get install mysql-community-server \ -y --no-install-recommends