add image docker
All checks were successful
Deploy / Build and Deploy to Production (push) Successful in 16s

This commit is contained in:
isUnknown 2026-01-08 15:56:06 +01:00
parent a7918a35e2
commit 3cc4da63fb
3 changed files with 26 additions and 18 deletions

12
Dockerfile.ci Normal file
View file

@ -0,0 +1,12 @@
# 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