FROM node:22-slim WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends python3 make g++ ca-certificates wget && rm -rf /var/lib/apt/lists/* COPY package*.json ./ RUN npm install --no-audit --no-fund COPY . . RUN npm run build ENV HOST=0.0.0.0 PORT=4321 NODE_ENV=production DB_PATH=/data/shop.db RUN mkdir -p /data EXPOSE 4321 HEALTHCHECK --interval=15s --timeout=5s --start-period=20s --retries=5 CMD wget -qO- http://127.0.0.1:4321/ >/dev/null 2>&1 || exit 1 CMD ["node","./dist/server/entry.mjs"]