From 15890f49bb81f0bbb56ac51b66e1883e71f0c5ed Mon Sep 17 00:00:00 2001 From: Tom Noogen Date: Tue, 20 Mar 2018 16:03:10 -0500 Subject: [PATCH] fix typo --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c326d5c..f7995e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -89,7 +89,7 @@ RUN \ && curl -SL https://vestacp.com/pub/vst-install-ubuntu.sh -o /tmp/vst-install-ubuntu.sh \ # put nginx on hold so it doesn't get updates with apt-get upgrade, also remove from vesta apt-get - && echo "nginx hold" | dpkg --set-selections \ + && apt-mark hold nginx postgresql-10 postgresql-client-10 postgresql-doc-10 postgresql-contrib \ && sed -i -e "s/\"nginx apache2/\"apache2/g" /tmp/vst-install-ubuntu.sh \ # fix mariadb instead of mysql @@ -97,7 +97,7 @@ RUN \ # fix postgres-9.6 instead of 9.5 && sed -i -e "s/postgresql /postgresql\-9\.6 /g" /tmp/vst-install-ubuntu.sh \ - && sed -i -e "s/postgresql\-constrib/postgresql\-contrib\-9\.6/g" /tmp/vst-install-ubuntu.sh \ + && sed -i -e "s/postgresql\-contrib/postgresql\-contrib\-9\.6 postgresql\-client\-9\.6/g" /tmp/vst-install-ubuntu.sh \ # begin install vesta && bash /tmp/vst-install-ubuntu.sh \