add Docker configuration and Jenkins pipeline for application deployment

This commit is contained in:
Vincent Guillet
2025-09-24 11:32:43 +02:00
parent 18f0364e26
commit 2e5b2b3ff5
3 changed files with 126 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM jenkins/jenkins:lts
USER root
RUN apt update && apt install -y docker.io && apt install -y docker-compose
RUN docker --version
USER jenkins