File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -5,22 +5,20 @@ LABEL Description="Latest version of eQual with Apache UID and GUID injection"
5
5
Version="1.0"
6
6
ENV ACCEPT_EULA=Y
7
7
RUN apt-get update && apt-get install -y \
8
- gnupg2 \
8
+ gnupg2 \
9
9
git \
10
10
procps \
11
11
netcat \
12
12
vim \
13
13
wget
14
14
COPY ./mpm_prefork.conf /etc/apache2/mods-available/
15
15
COPY ./000-default.conf /etc/apache2/sites-available/
16
-
17
16
# install sqlsrv drivers
18
17
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
19
18
RUN curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list > /etc/apt/sources.list.d/mssql-release.list
20
19
RUN apt-get update
21
20
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
22
21
RUN pecl install sqlsrv-5.10.1 pdo_sqlsrv-5.10.1
23
-
24
22
# install required PHP extensions
25
23
RUN set -ex; \
26
24
\
@@ -34,13 +32,14 @@ RUN set -ex; \
34
32
libwebp-dev \
35
33
libtidy-dev \
36
34
libzip-dev \
37
- libicu-dev \
35
+ libicu-dev \
38
36
zip \
39
37
; \
40
38
\
41
39
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; \
44
43
\
45
44
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
46
45
apt-mark auto '.*' > /dev/null; \
You can’t perform that action at this time.
0 commit comments