File size: 148 Bytes
b9da621
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM node:20
RUN git clone https://github.com/Niansuh/bingo.git
WORKDIR "bingo"
RUN npm i 
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]