get_peertube_videos/Dockerfile
2024-11-19 11:54:20 +02:00

11 lines
248 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_peertube_videos.py", "--config", "/config/config.conf" ]