Files
f0ckm/Dockerfile
2026-04-25 19:51:52 +02:00

24 lines
325 B
Docker

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"]