deploy prepare

This commit is contained in:
2025-08-08 09:43:34 +09:00
parent f09b90f63e
commit 05bc50269d
14 changed files with 124 additions and 31 deletions

View File

@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
pkg-config \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY docker/celery/requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
COPY app /app
COPY . /app

View File

@@ -0,0 +1,4 @@
celery>=5.4.0
redis>=5.0.4
pytz>=2024.1
python-dateutil>=2.9.0