# Image Docker pour CI/CD Forgejo - Projets Node.js # À placer dans ~/docker-images/Dockerfile.ci-node sur le VPS FROM node:20-slim # Install required tools for CI/CD RUN apt-get update && apt-get install -y \ lftp \ git \ && rm -rf /var/lib/apt/lists/* # Set working directory WORKDIR /workspace