get_youtube_videos/Dockerfile

12 lines
247 B
Text
Raw Normal View History

2024-11-15 13:03:35 +01:00
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" ]