From 1148ef15958de5e098a74eea27a97c97838d79a9 Mon Sep 17 00:00:00 2001 From: jekkos Date: Fri, 22 Jan 2016 14:43:53 +0100 Subject: [PATCH] Install grunt-cli in docker container (#284) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index d80d06ed0..70ecb99f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ RUN git clone https://github.com/jekkos/opensourcepos.git /app # RUN cd app && git checkout develop/2.4 RUN ln -s /usr/bin/nodejs /usr/bin/node RUN cd app && npm install +RUN npm install -g grunt-cli RUN ln -fs /app/* /var/www/html ADD ./docker/start_container.sh /start_container.sh