rss_scrape/Dockerfile
2021-07-02 02:10:42 +02:00

13 lines
219 B
Docker

FROM python:3.8
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir lxml feedgenerator requests datetime
RUN mkdir /app
WORKDIR /app
ENV PYTHONUNBUFFERED=1
CMD ["python", "server.py"]