FROM python:3.9-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY main.py . # Create volume mount points # /data should contain config.yaml and will be where plugins are downloaded (in /data/plugins) VOLUME /data CMD ["python", "-u", "main.py"]