Skip to content

Commit 761c9c4

Browse files
syntax
1 parent b4ef163 commit 761c9c4

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.docker/Dockerfile-7.4

+5-6
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,20 @@ LABEL Description="Latest version of eQual with Apache UID and GUID injection"
55
Version="1.0"
66
ENV ACCEPT_EULA=Y
77
RUN apt-get update && apt-get install -y \
8-
gnupg2 \
8+
gnupg2 \
99
git \
1010
procps \
1111
netcat \
1212
vim \
1313
wget
1414
COPY ./mpm_prefork.conf /etc/apache2/mods-available/
1515
COPY ./000-default.conf /etc/apache2/sites-available/
16-
1716
# install sqlsrv drivers
1817
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
1918
RUN curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list > /etc/apt/sources.list.d/mssql-release.list
2019
RUN apt-get update
2120
RUN ACCEPT_EULA=Y apt-get -y --no-install-recommends install msodbcsql17 odbcinst=2.3.7 odbcinst1debian2=2.3.7 unixodbc-dev=2.3.7 unixodbc=2.3.7
2221
RUN pecl install sqlsrv-5.10.1 pdo_sqlsrv-5.10.1
23-
2422
# install required PHP extensions
2523
RUN set -ex; \
2624
\
@@ -34,13 +32,14 @@ RUN set -ex; \
3432
libwebp-dev \
3533
libtidy-dev \
3634
libzip-dev \
37-
libicu-dev \
35+
libicu-dev \
3836
zip \
3937
; \
4038
\
4139
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
42-
docker-php-ext-install gd mysqli opcache zip tidy; \
43-
docker-php-ext-enable sqlsrv pdo_sqlsrv; \
40+
docker-php-ext-configure intl; \
41+
docker-php-ext-install gd mysqli opcache zip tidy intl; \
42+
docker-php-ext-enable sqlsrv pdo_sqlsrv; \
4443
\
4544
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
4645
apt-mark auto '.*' > /dev/null; \

0 commit comments

Comments
 (0)