forked from oliverschloebe/google-spell-pspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
64 lines (58 loc) · 1.02 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
FROM php:7.4-apache-buster
LABEL maintainer="Thomas Bruederli <[email protected]>"
RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends \
aspell-am \
aspell-ar \
aspell-ar \
aspell-bg \
aspell-br \
aspell-ca \
aspell-cs \
aspell-cy \
aspell-da \
aspell-de \
aspell-el \
aspell-en \
aspell-eo \
aspell-es \
aspell-et \
aspell-eu \
aspell-fa \
aspell-fr \
aspell-ga \
aspell-he \
aspell-hr \
aspell-hu \
aspell-hy \
aspell-is \
aspell-it \
aspell-ku \
aspell-lt \
aspell-lv \
aspell-nl \
aspell-pl \
aspell-pt \
aspell-ro \
aspell-ru \
aspell-sk \
aspell-sl \
aspell-sv \
aspell-tl \
aspell-uk \
aspell-uz \
;
RUN set -ex; \
apt-get install -y --no-install-recommends \
libpspell-dev \
libonig-dev \
; \
docker-php-ext-install \
pspell \
mbstring \
;
RUN a2enmod rewrite
COPY *.php .
COPY .htaccess .
CMD ["apache2-foreground"]