@@ -39,8 +39,7 @@ COPY ./frontend/ /tmp/frontend
RUN cd /tmp/frontend && \
npm install && \
bower --allow-root install && \
- grunt --gruntfile Gruntfile_global.js && \
- grunt --gruntfile Gruntfile_app.js && \
+ for gruntfile in Gruntfile_*; do grunt --gruntfile "${gruntfile}"; done && \
rmdir /var/www/html && \
cp -r /tmp/frontend/build/release/ /var/www/html && \
rm -rf /tmp/frontend