salix/services/client/Dockerfile

9 lines
89 B
Docker

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