FROM node:20-alpine WORKDIR /app COPY package*.json ./ RUN yarn COPY . . CMD ["yarn", "dev", "--port", "3000", "--host", "0.0.0.0"]