We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85034d7 commit 12baa7bCopy full SHA for 12baa7b
Dockerfile
@@ -1,9 +1,17 @@
1
FROM ghcr.io/go-rod/rod:v0.116.0
2
3
+ARG RAILWAY_PUBLIC_DOMAIN
4
+
5
ENV TZ=Asia/Shanghai
6
+ENV PORT=8080
7
+ENV ROD_URL=ws://rod.railway.internal:7317
8
+ENV RSS_HOST=${RAILWAY_PUBLIC_DOMAIN}
9
+ENV RSS_HTTPS=1
10
-RUN curl https://wechat2rss.xlab.app/release/server -o server \
- && chmod +x /server
11
+RUN apt update -y && \
12
+ apt install -y curl && \
13
+ curl https://wechat2rss.xlab.app/release/server -o server && \
14
+ chmod +x /server
15
16
WORKDIR /wechat2rss
17
CMD ["/server"]
0 commit comments