Files

17 lines
295 B
Docker
Raw Permalink Normal View History

2026-03-27 16:55:22 -04:00
FROM python:3.14-slim
WORKDIR /app
# Install dependencies first (layer caching)
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy bot
COPY bot.py .
# Non-root user
RUN useradd --no-create-home --shell /bin/false botuser
USER botuser
CMD ["python", "bot.py"]