Skip to content

Commit

Permalink
fix open continuation lines in Dockerfile
Browse files Browse the repository at this point in the history
replace mysql package with mysql-server packeage
  • Loading branch information
gregor-j committed May 22, 2024
1 parent 892889a commit 129e5f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit 129e5f6

Please sign in to comment.