Updated Nubian to run in a docker composition

This commit is contained in:
Dunemask 2021-07-24 19:05:16 -06:00
parent ea2cefb8f3
commit 9b964af050
5 changed files with 10 additions and 6 deletions

View file

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