Mercurial > code > home > repos > video
view Dockerfile @ 31:f7236339097e
esc key to close video
author | drewp@bigasterisk.com |
---|---|
date | Mon, 26 Aug 2024 22:33:44 -0700 |
parents | 27a754f8e8f8 |
children | 1bd17c2e5517 |
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 serve-files.js ./ COPY src/ ./src/ COPY *.py ./