Move to new db setup

This commit is contained in:
Ryan
2026-09-08 20:31:06 -04:00
parent 78358e0d7b
commit ea46d418bd
18 changed files with 468 additions and 2043 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM ubuntu:22.04
# Install Perl, system deps, and ffmpeg (includes ffprobe)
RUN apt update && apt install -y \
libdbd-mysql-perl \
libhttp-lite-perl \
libjson-perl \
libyaml-perl \
perl \
libdbi-perl \
build-essential \
ffmpeg
EXPOSE 3000
RUN mkdir -p /app
WORKDIR /app
COPY . /app
# Simple placeholder command
CMD ["perl", "scanner.pl"]