Severian commited on
Commit
ddd2d99
·
1 Parent(s): 9b96eda

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+ RUN git clone https://github.com/severian42/New-Nexus.git
3
+ WORKDIR "New-Nexus"
4
+ RUN npm i
5
+ RUN npm run build
6
+ EXPOSE 3000
7
+ CMD ["npm", "run", "start"]