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
+27
View File
@@ -0,0 +1,27 @@
FROM ubuntu:22.04
# Install Perl and system dependencies
RUN apt update && apt install -y \
dnsutils \
libdancer2-perl \
libdancer2-plugin-database-perl \
libdancer-plugin-database-core-perl \
libdbd-mysql-perl \
libhttp-lite-perl \
libjson-perl \
libspreadsheet-parsexlsx-perl \
libsql-splitstatement-perl \
libyaml-perl \
perl \
libdbi-perl \
build-essential \
ffmpeg
EXPOSE 3000
RUN mkdir -p /app
WORKDIR /app
COPY . /app
# Simple placeholder command
CMD ["perl", "app.pl"]