File size: 225 Bytes
019898b
 
 
 
 
 
 
 
4dec805
019898b
25965cb
1
2
3
4
5
6
7
8
9
10
11
12
FROM node:20

WORKDIR /home/appuser/app

RUN git clone https://github.com/GamerC0der/notmysnakegame .

RUN npm install

EXPOSE 7860

CMD ["sh", "-c", 'PORT=7860 concurrently "vite --host --port 7860" "node server/index.js"']