Mercurial > code > home > repos > video
view Dockerfile @ 49:1bd17c2e5517 default tip
video.py must sign video urls for serve-files.js to serve them
author | drewp@bigasterisk.com |
---|---|
date | Fri, 06 Dec 2024 17:13:51 -0800 |
parents | 27a754f8e8f8 |
children |
line wrap: on
line source
FROM reg:5000/base_basic WORKDIR /opt RUN apt update && apt-get install -y git ffmpegthumbnailer COPY pyproject.toml pdm.lock ./ RUN pdm sync COPY package.json pnpm-lock.yaml ./ RUN pnpm install COPY vite.config.ts ./ COPY src/ ./src/ COPY serve-files.js signature_decode.mjs ./ COPY *.py ./