This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
matrix-wug/Dockerfile
2018-12-03 01:12:20 +00:00

9 lines
91 B
Docker

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