diff --git a/Dockerfile b/Dockerfile index aa4e46cd0ffce175e91b2ea73cf0b489708cb030..bbc49fe8e9596573c0c81dd9605f9429d911058b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,13 +54,12 @@ RUN git clone --branch v${DISCOURSE_VERSION} https://github.com/discourse/discou # this expects a git-cloneable link ARG DISCOURSE_ADDITIONAL_PLUGINS= RUN if [ "$DISCOURSE_ADDITIONAL_PLUGINS" != "" ]; then \ - cd plugins/ \ + cd plugins/; \ for PACKAGE_LINK in $DISCOURSE_ADDITIONAL_PLUGINS; do \ git clone "$PACKAGE_LINK"; \ done; \ bundle exec rake plugin:update plugin=discourse-plugin-checklist; \ bundle exec rake assets:clean; \ - bundle exec rake assets:precompile; \ fi EXPOSE 3000