Created Dockerfile for Nubian

This commit is contained in:
Dunemask 2021-07-24 15:55:24 -06:00
parent 69f1de45a3
commit ea2cefb8f3

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM node:latest
RUN apt-get update && apt-get upgrade -y
WORKDIR /dunestorm/nubian
COPY src /dunestorm/nubian
RUN npm i
CMD ["npm","start"]
# EXPOSE PORTS
EXPOSE 4001