pokerogue/Dockerfile

6 lines
96 B
Docker

FROM node:21
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 8000
CMD [ "npm", "run", "start:dev" ]