feat: redis integration

This commit is contained in:
2025-11-26 20:53:53 +01:00
parent 7cbc5bf4f3
commit bfbe841154
4 changed files with 80 additions and 17 deletions
+4 -1
View File
@@ -2,8 +2,11 @@ FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y redis-tools && rm -rf /var/lib/apt/lists/*
# Install dependencies
RUN pip install requests
RUN pip install requests redis
# Copy application code
COPY . .