Fixed dockerfile

This commit is contained in:
David Baldwynn 2016-04-21 12:17:45 -07:00
parent 3a38338d76
commit fd03e97101

View File

@ -1,32 +1,11 @@
# DOCKER-VERSION 1.7.0
FROM ubuntu
FROM node:4
# make sure apt is up to date
RUN apt-get update
MAINTAINER Matthias Luebken, matthias@catalyst-zero.com
# install nodejs and npm
RUN apt-get install -y nodejs npm git git-core
WORKDIR /home/mean
WORKDIR /usr/src/app
# Install Mean.JS Prerequisites
RUN npm install -g grunt-cli
RUN npm install -g bower
# Install Mean.JS packages
ADD package.json /home/mean/package.json
RUN npm install
# Manually trigger bower. Why doesnt this work via npm install?
ADD .bowerrc /home/mean/.bowerrc
ADD bower.json /home/mean/bower.json
RUN bower install --config.interactive=false --allow-root
# Make everything available for start
ADD . /home/mean
RUN npm install -g grunt-cli bower
# currently only works for development
ENV NODE_ENV development
@ -34,4 +13,4 @@ ENV NODE_ENV development
# Port 3000 for server
# Port 35729 for livereload
EXPOSE 3000 35729
CMD ["grunt"]
CMD ["grunt default"]