From 129e5f6842bb3cd77e0a2853fad4aca228e4d6fe Mon Sep 17 00:00:00 2001 From: Gregor Date: Wed, 22 May 2024 16:15:37 +0200 Subject: [PATCH] fix open continuation lines in Dockerfile replace mysql package with mysql-server packeage --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c7ad8c3..82926bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN set -xe; \ php-yaml \ php-zip \ # --- PHP modules END --- - mysql; + mysql-server; # Allow to run composer as root ENV COMPOSER_ALLOW_SUPERUSER="1" @@ -44,12 +44,12 @@ RUN set -xe; \ rm -f "/usr/local/bin/composer-setup.php"; \ rm -f "/usr/local/bin/composer-setup.sig"; \ # Install git & unzip - apt-get install -qq -y --no-install-recommends git unzip; \ + apt-get install -qq -y --no-install-recommends git unzip; # Prepare working directory RUN set -xe; \ mkdir -p /app; \ - chmod g+w,o+w /app; \ + chmod g+w,o+w /app; # Set the working directory inside the container WORKDIR /app