tangled
alpha
login
or
join now
zenfyr.dev
/
xmpp-discord-bridge
0
fork
atom
fork of https://f-hub.org/XMPP/xmpp-discord-bridge
0
fork
atom
overview
issues
pulls
pipelines
Update Dockerfile
zenfyr.dev
1 month ago
139e1c0b
4891efa5
verified
This commit was signed with the committer's
known signature
.
zenfyr.dev
SSH Key Fingerprint:
SHA256:TtcIcnTnoAB5mqHofsaOxIgiMzfVBxej1AXT7DQdrTE=
+2
-1
1 changed file
expand all
collapse all
unified
split
contrib
Dockerfile
+2
-1
contrib/Dockerfile
···
1
1
-
FROM python:3.13.2-alpine
1
1
+
FROM python:3.11-alpine
2
2
3
3
COPY . /build
4
4
WORKDIR /build
5
5
RUN apk add --no-cache git cargo libgcc && \
6
6
+
pip3 install --no-cache-dir setuptools wheel && \
6
7
pip3 install . && \
7
8
apk del git cargo && \
8
9
rm -rf /build