14 lines
316 B
Docker
14 lines
316 B
Docker
FROM archlinux
|
|
RUN pacman -Syy --noconfirm
|
|
RUN pacman -S nodejs npm ffmpeg yt-dlp ffmpegthumbnailer postgresql imagemagick git mailcap --noconfirm
|
|
|
|
WORKDIR /opt/
|
|
RUN git clone https://git.lat/f0ck/f0ckv2.git
|
|
|
|
WORKDIR /opt/f0ckv2
|
|
|
|
RUN npm i
|
|
RUN mkdir -p public/ca deleted/{ca,b,t}
|
|
|
|
|
|
ENTRYPOINT ["npm", "run", "start"] |