Files
twitchrise/Dockerfile
2025-08-02 14:30:59 +05:30

16 lines
246 B
Docker

FROM python:3.11-slim
ENV PYTHONUNBUFFERED=1
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the Python script only
COPY head.py .
# Entrypoint
CMD ["python3", "head.py"]