Docker automate in Jenkinsfile (fix 5)
BOT_open_sesam/pipeline/head There was a failure building this commit Details

main
dl 2026-02-04 12:34:20 +05:00
parent 7ad9b91a0a
commit 8f8b5d18d1
1 changed files with 3 additions and 2 deletions

View File

@ -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 . .