Removed old leftovers from bower and ionicons. These caused problems. Also added support for local Dockerfile (for dev)

This commit is contained in:
Ronny Roos 2016-06-22 21:25:54 +02:00
parent 0236ea72e9
commit eb3127a4c0
8 changed files with 50 additions and 21 deletions

15
Dockerfile.dev Normal file
View file

@ -0,0 +1,15 @@
FROM node:4.4.5-wheezy
RUN mkdir /app
WORKDIR /app
# Get the usual suspects ;-)
RUN npm install typings webpack-dev-server webpack rimraf -g
ADD . /app
EXPOSE 3000
VOLUME ["/app"]
CMD bash