FROM node:22-bookworm-slim RUN apt-get update \ && apt-get install -y --no-install-recommends ca-certificates git openssh-client bash \ && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY package.json package-lock.json* ./ RUN if [ -f package-lock.json ]; then npm ci --omit=dev; else npm install --omit=dev; fi COPY src ./src COPY scripts ./scripts RUN chmod +x /app/scripts/deploy.sh ENV PORT=3000 EXPOSE 3000 CMD ["npm", "start"]