12 lines
216 B
Docker

FROM python:latest
ENV TZ Europe/Zurich
RUN mkdir -p /app/news_fetch
COPY requirements.txt /app/requirements.txt
RUN python3 -m pip install -r /app/requirements.txt
COPY . /app/news_fetch
WORKDIR /app/news_fetch