From 7fffafab0851bcfb1ca42d9b359517ca1a702bfd Mon Sep 17 00:00:00 2001 From: lombardof Date: Thu, 24 May 2018 17:56:18 +0200 Subject: [PATCH] fix docker file Change-Id: Id6c1e5986f23d91d0f4b53afd736b413ea5203a1 Signed-off-by: lombardof --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 56b0497..0b2f05a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:2.7 +FROM ubuntu:16.04 WORKDIR /usr/src/app COPY . /usr/src/app RUN apt-get update -RUN apt-get -y install npm +RUN apt-get install -y npm git python-pip RUN npm install -g bower RUN ln -s /usr/bin/nodejs /usr/bin/node RUN bower install --allow-root -- 2.25.1