019898b
4dec805
019898b
25965cb | | 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"']
|