FROM node:latest WORKDIR /app COPY . . RUN npm install -g pnpm && pnpm install EXPOSE 3000 RUN chown -R 1000:1000 /app CMD ["pnpm", "dev"]