get_peertube_videos/Dockerfile

12 lines
248 B
Text
Raw Normal View History

2024-11-19 10:54:20 +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_peertube_videos.py", "--config", "/config/config.conf" ]