FROM node:current-alpine

EXPOSE 5173

COPY . /app
WORKDIR app

RUN ["npm", "install"]
ENTRYPOINT ["npm","run", "dev"]
