Snake / Dockerfile
GamerC0der's picture
Update Dockerfile
25965cb verified
raw
history blame contribute delete
225 Bytes
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"']