This repository has been archived on 2024-08-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nubian/Dockerfile

7 lines
105 B
Text
Raw Normal View History

2021-11-07 02:14:48 +00:00
FROM node:16
WORKDIR /dunemask/net/nubian
COPY package.json .
2021-11-07 02:14:48 +00:00
RUN npm i
COPY src src
2021-07-24 15:55:24 -06:00
CMD ["npm","start"]