FROM node:20-alpine WORKDIR /app COPY package*.json ./ RUN yarn install --production=true EXPOSE 3000 COPY . . CMD ["yarn", "dev", "--port", "3000"]