Skip to content

Commit 405c9ee

Browse files
committed
#343 non-interactive
1 parent 3d2b943 commit 405c9ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ FROM php:8.3.0-apache
2020
WORKDIR /var/www/html
2121

2222
# Install system dependencies
23-
RUN apt-get update \
23+
RUN DEBIAN_FRONTEND=noninteractive apt-get update \
2424
&& apt-get install -y build-essential || exit 1
25-
RUN apt-get install libpng-dev \
25+
RUN DEBIAN_FRONTEND=noninteractive apt-get install libpng-dev \
2626
libjpeg-dev \
2727
libonig-dev \
2828
libxml2-dev || exit 1
2929

30-
RUN apt-get install libzip-dev \
30+
RUN DEBIAN_FRONTEND=noninteractive apt-get install libzip-dev \
3131
zip \
3232
unzip \
3333
git \
3434
default-mysql-client || exit 1
35-
RUN apt-get clean \
35+
RUN DEBIAN_FRONTEND=noninteractive apt-get clean \
3636
&& rm -rf /var/lib/apt/lists/* \
3737
# Install PHP extensions
3838
&& docker-php-ext-install \

0 commit comments

Comments
 (0)