inital release

This commit is contained in:
obvtiger 2025-04-30 19:01:10 +02:00
commit 1d708c14cf
26 changed files with 34335 additions and 0 deletions

23
Dockerfile Normal file
View file

@ -0,0 +1,23 @@
FROM node
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN apt update -y
RUN apt install python3 -y
RUN apt install ffmpeg -y
COPY deps/ ./deps/
COPY public/ ./public/
COPY server.js ./
COPY middleware/ ./middleware/
COPY routes/ ./routes/
COPY cookies.txt ./
EXPOSE 3000
CMD ["node", "server.js"]