view Dockerfile @ 43:a7b644dc1b4b

ridiculous fix for vite not proxying urls with . in them
author drewp@bigasterisk.com
date Fri, 06 Dec 2024 00:58:46 -0800
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 ./