aboutsummaryrefslogtreecommitdiffstats
path: root/web/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'web/Dockerfile')
-rw-r--r--web/Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/Dockerfile b/web/Dockerfile
index fe525ca..40ab8f0 100644
--- a/web/Dockerfile
+++ b/web/Dockerfile
@@ -10,7 +10,6 @@ FROM python:3.5
ENV PYTHONUNBUFFERED 1
RUN apt-get update && apt-get install -y npm
-RUN npm install -g bower
ADD requirements.txt /requirements.txt
RUN pip install -r /requirements.txt
@@ -19,7 +18,7 @@ ADD web/init.sh /init.sh
ADD src/ /laas_dashboard/
ADD src/static/ laas_dashboard/static/
-RUN cd laas_dashboard/static/ && bower install --allow-root
+RUN cd laas_dashboard/static/ && npm install
WORKDIR /laas_dashboard/
CMD ["/init.sh"]