Files
Lakehouse/rss-proxy/Dockerfile
T

7 lines
185 B
Docker
Raw Normal View History

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"]