14 lines
339 B
Text
14 lines
339 B
Text
|
|
FROM mediawiki:lts
|
||
|
|
|
||
|
|
RUN apt update && apt install -y xpdf
|
||
|
|
|
||
|
|
# Eventually you need tu build ghostscript from source
|
||
|
|
|
||
|
|
RUN apt install -y ghostscript
|
||
|
|
|
||
|
|
# Eventually you need tu build Imagick from source
|
||
|
|
|
||
|
|
RUN apt install -y imagemagick
|
||
|
|
|
||
|
|
# Start from the webserver neccessary or not? Test from 23.04.2021 -> not needed
|
||
|
|
#CMD ["apache2-foreground"]
|