salix/services/client/Dockerfile

11 lines
102 B
Docker

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