You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
422 B
16 lines
422 B
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
|
|
# Install audio worker dependencies
|
|
COPY requirements.audio.txt /app/requirements.audio.txt
|
|
RUN pip install --no-cache-dir -r /app/requirements.audio.txt
|
|
|
|
# Celery is noodzakelijk voor de worker
|
|
RUN pip install --no-cache-dir celery
|
|
|
|
# Copy project
|
|
COPY . /app
|
|
|
|
# Start the AUDIO Celery worker
|
|
CMD ["celery", "-A", "celery_app", "worker", "-Q", "audio", "-n", "audio@%h", "-l", "INFO"]
|