debuged python docker client issue

This commit is contained in:
2026-01-18 20:01:23 +01:00
parent fa2d278c79
commit 165d87899d
7 changed files with 111 additions and 166 deletions

View File

@@ -9,13 +9,13 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching
COPY session-manager/requirements.txt .
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY session-manager/ .
COPY . .
# Create sessions directory
RUN mkdir -p /app/sessions