pokerogue/Dockerfile

6 lines
102 B
Docker

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