init f0ckm
This commit is contained in:
23
Dockerfile
Normal file
23
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user