salix/services/auth/Dockerfile

9 lines
86 B
Docker

FROM node:6.9.1
COPY . /app
WORKDIR /app
RUN npm install
CMD ["npm", "start"]