2022-10-06 15:55:30 +02:00

12 lines
213 B
Docker

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