init f0ckm

This commit is contained in:
2026-04-25 19:51:52 +02:00
commit b646107eb7
241 changed files with 70364 additions and 0 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM node:22-alpine
ARG GIT_HASH=unknown
ENV GIT_HASH=$GIT_HASH
RUN apk add --no-cache \
ffmpeg \
yt-dlp \
ffmpegthumbnailer \
imagemagick \
git \
mailcap \
file \
curl \
torsocks \
exiftool
WORKDIR /opt/f0bm
COPY . .
RUN npm i
RUN npm run build
ENTRYPOINT ["npm", "run", "start"]