2026-03-04 23:01:36 +00:00
|
|
|
# Dockerfile for Reddit Test Posts Bot
|
|
|
|
|
FROM python:3.11-slim
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
COPY requirements.txt .
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
2026-03-05 15:54:44 +00:00
|
|
|
COPY bot.py .
|
|
|
|
|
COPY config.py .
|
2026-03-11 17:26:02 +00:00
|
|
|
ENV PYTHONUNBUFFERED=1
|
2026-03-04 23:01:36 +00:00
|
|
|
CMD ["python", "bot.py"]
|