FROM node:20 LABEL authors="Sergio Bianchi" WORKDIR /app COPY package*.json ./ RUN npm install COPY . . EXPOSE 5173