Skip to content
Snippets Groups Projects
Commit cb49ffa0 authored by Michał 'rysiek' Woźniak's avatar Michał 'rysiek' Woźniak
Browse files

bugfix

parent 8431acc1
No related branches found
No related tags found
1 merge request!3DISCOURSE_ADDITIONAL_PLUGINS build arg
...@@ -54,13 +54,12 @@ RUN git clone --branch v${DISCOURSE_VERSION} https://github.com/discourse/discou ...@@ -54,13 +54,12 @@ RUN git clone --branch v${DISCOURSE_VERSION} https://github.com/discourse/discou
# this expects a git-cloneable link # this expects a git-cloneable link
ARG DISCOURSE_ADDITIONAL_PLUGINS= ARG DISCOURSE_ADDITIONAL_PLUGINS=
RUN if [ "$DISCOURSE_ADDITIONAL_PLUGINS" != "" ]; then \ RUN if [ "$DISCOURSE_ADDITIONAL_PLUGINS" != "" ]; then \
cd plugins/ \ cd plugins/; \
for PACKAGE_LINK in $DISCOURSE_ADDITIONAL_PLUGINS; do \ for PACKAGE_LINK in $DISCOURSE_ADDITIONAL_PLUGINS; do \
git clone "$PACKAGE_LINK"; \ git clone "$PACKAGE_LINK"; \
done; \ done; \
bundle exec rake plugin:update plugin=discourse-plugin-checklist; \ bundle exec rake plugin:update plugin=discourse-plugin-checklist; \
bundle exec rake assets:clean; \ bundle exec rake assets:clean; \
bundle exec rake assets:precompile; \
fi fi
EXPOSE 3000 EXPOSE 3000
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment