get_youtube_videos/Dockerfile
2024-11-15 14:03:35 +02:00

11 lines
247 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN pip install .
VOLUME config
CMD [ "python", "/usr/local/bin/get_youtube_videos.py", "--config", "/config/config.conf" ]