Use node:0.10 as the ui build image, and upgrade karma and karma webpack

This commit is contained in:
Tom Wilkie
2015-08-17 15:36:34 +00:00
parent efeba4a2ed
commit e7ab9816cd
2 changed files with 5 additions and 18 deletions

View File

@@ -1,19 +1,5 @@
FROM debian:latest
FROM node:0.10
WORKDIR /home/weave
RUN apt-get update && apt-get install -y curl bzip2 libfreetype6 libfontconfig1 make
# Install nodejs
RUN curl -sL https://deb.nodesource.com/setup | bash -
RUN apt-get install -y nodejs
# build tool
COPY package.json gulpfile.js webpack.config.js .eslintrc /home/weave/
RUN npm install -g gulp
# install app and build dependencies
ADD package.json /home/weave/
RUN npm install
ADD gulpfile.js webpack.config.js .eslintrc /home/weave/
# For instructions on running this container, consult the toplevel Makefile