FROM node:latest
WORKDIR /usr/src/app

ARG CLIENT_PORT
ENV PORT=${CLIENT_PORT}
ENV HOST=0.0.0.0

CMD ["npm","run","dev"]