Files
eng-bot-mitrics/Dockerfile

27 lines
555 B
Docker
Raw Normal View History

2025-12-11 20:22:16 +03:00
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
2025-12-15 18:07:49 +03:00
RUN mkdir -p /app/data
2025-12-11 20:22:16 +03:00
RUN python manage.py collectstatic --noinput 2>/dev/null || true
EXPOSE 8000
2025-12-15 18:07:49 +03:00
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
2025-12-11 20:22:16 +03:00
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "eng_bot_metrics.wsgi:application"]