Initial commit: RSS feed viewer with Docker setup

This commit is contained in:
2026-01-29 16:44:30 +01:00
commit e14ec47990
11 changed files with 1618 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM python:3.12-slim
# Prevent Python from writing .pyc files and enable unbuffered logs.
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
# Install dependencies first for better layer caching.
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
# Keep testing and local dev via `flask` if desired; docker runs the app directly.
CMD ["python", "app.py"]