Move to new db setup
This commit is contained in:
@@ -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"]
|
||||
Reference in New Issue
Block a user