FROM node:16 WORKDIR /usr/app COPY package*.json ./ RUN npm install COPY . . ENV PORT=5173 EXPOSE 5173