Initial commit

This commit is contained in:
Joshua Glemza
2023-02-09 21:34:10 +00:00
commit d069ff0bc7
4 changed files with 215 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03fb02dd4e9d0286df
RUN mkdir -p /app/code
WORKDIR /app/code
RUN git clone https://github.com/DIYgod/RSSHub.git /app/code/rsshub
RUN cd /app/code/rsshub
RUN npm install /app/code/rsshub
RUN npm ci --production
COPY start.sh /app/pkg/
CMD [ "/app/pkg/start.sh" ]