adding in improvements from when we ran the birthday party app. Mostly fixed the Dockerfiles so they use Alpine for the base images. That required re-working the Java worker Docker file. Removed links from compose file. cleaned up a few things like a tab instead of a space in app.py

This commit is contained in:
Mano Marks
2016-04-25 11:28:21 -07:00
parent 10a3a3b68a
commit 261eb03102
6 changed files with 18 additions and 20 deletions

View File

@ -1,9 +1,9 @@
FROM node:0.10
FROM mhart/alpine-node
RUN mkdir /app
WORKDIR /app
ADD package.json /app/package.json
RUN npm config set registry http://registry.npmjs.org
RUN npm install && npm ls
RUN mv /app/node_modules /node_modules