From cb49ffa023ee832a167be8490646db2350b47510 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20=27rysiek=27=20Wo=C5=BAniak?=
 <rysiek@hackerspace.pl>
Date: Mon, 5 Dec 2016 15:14:14 +0100
Subject: [PATCH] bugfix

---
 Dockerfile | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index aa4e46c..bbc49fe 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
-- 
GitLab