matrix-wug/Dockerfile

9 lines
91 B
Docker

FROM node:10-slim
WORKDIR /server
COPY . /server
RUN npm install
CMD [ "npm", "start" ]