Spaces:
Running
Running
File size: 283 Bytes
de269a3 8318ef8 de269a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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"] |