File size: 240 Bytes
155035c
fa280ff
155035c
20033ed
abe8902
 
ddd2d99
abe8902
 
1
2
3
4
5
6
7
8
9
# Use an official Node runtime as the base image
FROM node:18
# Clone the GitHub repository
RUN git clone https://github.com/severian42/New-Nexus.git .
WORKDIR "New-Nexus"
RUN npm i 
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]