Skip to content

Commit c74a0ea

Browse files
committed
additions for MediaWiki
1 parent f0c037d commit c74a0ea

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

Dockerfile

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,22 @@ RUN apk --update add \
1919
php-gettext \
2020
php-ldap \
2121
php-ctype \
22-
php-dom && \
22+
php-dom \
23+
php-mbstring \
24+
php-intl \
25+
php-fileinfo \
26+
php-mysqli \
27+
php-xmlreader \
28+
imagemagick \
29+
shadow \
30+
bash && \
2331
rm -rf /var/cache/apk/*
2432

2533
ADD lighttpd.conf /etc/lighttpd/lighttpd.conf
26-
RUN mkdir -p /run/lighttpd/ && \
27-
chown www-data: /run/lighttpd/
34+
RUN usermod -u 33 www-data && \
35+
groupmod -g 33 www-data && \
36+
mkdir -p /run/lighttpd/ && \
37+
chown www-data:www-data /run/lighttpd/
2838

2939
EXPOSE 80
3040
VOLUME /var/www

0 commit comments

Comments
 (0)