FROM node:22-alpine WORKDIR /home/app COPY package.json . RUN npm install --force COPY ./dist ./dist EXPOSE 8000 CMD ["node", "./dist/index.js"]