FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir flask gunicorn feedparser
COPY server.py .
EXPOSE 8090
CMD ["gunicorn", "-b", "0.0.0.0:8090", "-w", "1", "server:app"]
