Files
DeletedPosts/Dockerfile

20 lines
436 B
Docker
Raw Permalink Normal View History

2026-02-23 22:48:25 +00:00
FROM python:3.14-slim
WORKDIR /app
# Copy application files
COPY Bot ./Bot
2026-02-24 22:31:12 +00:00
COPY populate_config.py .
2026-02-23 23:40:37 +00:00
COPY config ./config
2026-02-23 22:48:25 +00:00
2026-02-23 23:40:37 +00:00
# prepare configuration directory (volume may later overwrite it)
2026-02-23 22:48:25 +00:00
RUN mkdir -p /app/config
# Install dependencies
RUN pip install --no-cache-dir praw
ENV PYTHONUNBUFFERED=1
2026-02-24 22:28:39 +00:00
# Always generate config.py from environment before starting
CMD ["/bin/sh", "-c", "python populate_config.py && python Bot/main.py"]