File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 "ref" : " main"
66 },
77 "knot" : {
8- "repo" : " https://tangled.org/@ tangled.org/core.git" ,
8+ "repo" : " https://tangled.org/tangled.org/core.git" ,
99 "ref" : " master"
1010 },
1111 "spindle" : {
12- "repo" : " https://tangled.org/@ tangled.org/core.git" ,
12+ "repo" : " https://tangled.org/tangled.org/core.git" ,
1313 "ref" : " master"
1414 },
1515 "i2pd-tools" : {
2020 "repo" : " https://github.com/joinloops/loops-server.git" ,
2121 "ref" : " master"
2222 },
23- "caddy" : {}
23+ "caddy" : {},
24+ "xmpp-discord-bridge" : {
25+ "repo" : " https://tangled.org/did:plc:rjhjcb3rgdsmdr6ykywuh63z/xmpp-discord-bridge" ,
26+ "ref" : " main"
27+ }
2428 }
2529}
Original file line number Diff line number Diff line change 1+ FROM python:3.11-alpine AS builder
2+
3+ COPY . /build
4+ WORKDIR /build
5+
6+ RUN apk add --no-cache git cargo libgcc
7+ RUN pip3 install --no-cache-dir setuptools wheel
8+ RUN pip3 install .
9+ RUN apk del git cargo && rm -rf /build
10+
11+ FROM python:3.11-alpine
12+
13+ RUN adduser -D -u 1000 app
14+ USER app
15+
16+ COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
17+ COPY --from=builder /usr/local/bin/xmpp-discord-bridge /usr/local/bin/
18+
19+ ENTRYPOINT ["xmpp-discord-bridge" ]
You can’t perform that action at this time.
0 commit comments