From 8f8b5d18d1d7204bb7adfca4da6a8d57f7519eca Mon Sep 17 00:00:00 2001 From: dl Date: Wed, 4 Feb 2026 12:34:20 +0500 Subject: [PATCH] Docker automate in Jenkinsfile (fix 5) --- dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index 693c453..710fe40 100644 --- a/dockerfile +++ b/dockerfile @@ -1,9 +1,10 @@ -FROM python:3.11-slim-bookworm +FROM docker:dind +# FROM python:3.11-slim-bookworm WORKDIR /bot/open_sesam COPY requirements.txt . -RUN pip install --upgrade pip && pip install -r requirements.txt +RUN apk add --no-cache docker-compose python3 py3-pip && pip install --upgrade pip && pip install -r requirements.txt COPY . .