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