add some plugins at build time
This commit is contained in:
parent
46a4ef9350
commit
ef972f891a
1 changed files with 21 additions and 0 deletions
21
Dockerfile
21
Dockerfile
|
@ -115,6 +115,27 @@ ENV DC_TPL_CACHE=/var/www/dotclear/cache
|
||||||
# Directory for dotclear var
|
# Directory for dotclear var
|
||||||
ENV DC_VAR=/var/www/dotclear/var
|
ENV DC_VAR=/var/www/dotclear/var
|
||||||
|
|
||||||
|
##
|
||||||
|
# Plugins
|
||||||
|
##
|
||||||
|
|
||||||
|
# DotclearWatch
|
||||||
|
ENV VER_DW=0.9.3
|
||||||
|
RUN curl -fsSL -o plugin.zip "https://github.com/JcDenis/DotclearWatch/releases/download/v$VER_DW/plugin-DotclearWatch.zip" \
|
||||||
|
&& mkdir -p /var/lib/dotclear/plugins/DotclearWatch \
|
||||||
|
&& unzip -d /var/lib/dotclear/plugins plugin.zip \
|
||||||
|
&& chown -R www:www /var/lib/dotclear/plugins \
|
||||||
|
&& rm plugin.zip
|
||||||
|
|
||||||
|
# sysInfo
|
||||||
|
ENV VER_SI=9.6
|
||||||
|
RUN curl -fsSL -o plugin.zip "https://github.com/franck-paul/sysInfo/releases/download/$VER_SI/plugin-sysInfo-$VER_SI.zip" \
|
||||||
|
&& mkdir -p /var/lib/dotclear/plugins/sysInfo \
|
||||||
|
&& unzip -d /var/lib/dotclear/plugins plugin.zip \
|
||||||
|
&& chown -R www:www /var/lib/dotclear/plugins \
|
||||||
|
&& rm plugin.zip
|
||||||
|
|
||||||
|
|
||||||
##
|
##
|
||||||
# END
|
# END
|
||||||
##
|
##
|
||||||
|
|
Loading…
Reference in a new issue