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