mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-24 02:28:12 +00:00
33 lines
852 B
Docker
33 lines
852 B
Docker
FROM python:3.10-slim
|
|
|
|
# Install required packages
|
|
RUN apt-get update && apt-get install -y \
|
|
ffmpeg \
|
|
libpq-dev \
|
|
gcc \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set the working directory
|
|
WORKDIR /app
|
|
|
|
# Install Python dependencies
|
|
COPY requirements.txt /app/
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
RUN pip install gevent # Install gevent for async workers with Gunicorn
|
|
|
|
# Copy application files
|
|
COPY . /app/
|
|
|
|
# Set environment variables
|
|
ENV DJANGO_SETTINGS_MODULE=dispatcharr.settings
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
# Run Django commands
|
|
RUN python manage.py collectstatic --noinput || true
|
|
RUN python manage.py migrate --noinput || true
|
|
|
|
# Expose the port
|
|
EXPOSE 8000
|
|
|
|
# Command to run the application
|
|
CMD ["gunicorn", "--workers=4", "--worker-class=gevent", "--timeout=300", "--bind", "0.0.0.0:8000", "dispatcharr.wsgi:application"]
|