rsshub / Dockerfile
Orion-zhen's picture
copy .env
8318ef8 verified
raw
history blame contribute delete
283 Bytes
FROM archlinux
RUN pacman -Syu --noconfirm --overwrite '*'
RUN pacman -S nodejs pnpm git git-lfs base-devel --noconfirm --overwrite '*'
WORKDIR /
RUN git clone https://github.com/DIYgod/RSSHub.git rsshub
WORKDIR /rsshub
COPY .env .
RUN pnpm i
RUN pnpm build
CMD ["pnpm", "start"]