FROM node:18-alpine3.15 USER root WORKDIR /app COPY . . RUN npm install RUN npm run build EXPOSE 3000 CMD node dist/server/entry.mjs