geoproject-app/Dockerfile.ci
isUnknown 3cc4da63fb
All checks were successful
Deploy / Build and Deploy to Production (push) Successful in 16s
add image docker
2026-01-08 15:56:11 +01:00

12 lines
312 B
Text

# 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