plugins in docker

This commit is contained in:
antelle 2017-05-13 14:12:12 +02:00
parent 9275c7802e
commit 6d8afb678e
1 changed files with 8 additions and 0 deletions

View File

@ -39,6 +39,14 @@ RUN wget https://github.com/keeweb/keeweb/archive/gh-pages.zip; \
mv keeweb-gh-pages keeweb; \
rm keeweb/CNAME
# clone keeweb plugins
RUN wget https://github.com/keeweb/keeweb-plugins/archive/master.zip; \
unzip master.zip; \
rm master.zip; \
mv keeweb-plugins-master/docs keeweb/plugins; \
rm -rf keeweb-plugins-master
rm keeweb/plugins/CNAME
ENTRYPOINT ["/opt/entrypoint.sh"]
CMD ["nginx"]