File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,19 +20,19 @@ FROM php:8.3.0-apache
2020WORKDIR /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 \
You can’t perform that action at this time.
0 commit comments