Spaces:
Running
Running
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"] |