FROM node

WORKDIR /app

COPY . /app

EXPOSE 3001:3001

RUN npm install

CMD npm run dev