Fix !tg version command for non-release versions in docker

This commit is contained in:
Tulir Asokan
2020-05-13 23:34:43 +03:00
parent 340c25ba0b
commit 976e0dd2b7
+3 -1
View File
@@ -62,7 +62,9 @@ RUN apk add --virtual .build-deps \
&& apk del .build-deps
COPY . /opt/mautrix-telegram
RUN apk add git && pip3 install .[speedups,hq_thumbnails,metrics,e2be] && apk del git
RUN apk add git && pip3 install .[speedups,hq_thumbnails,metrics,e2be] && apk del git \
# This doesn't make the image smaller, but it's needed so that the `version` command works properly
&& rm -rf mautrix_telegram
VOLUME /data
ENV UID=1337 GID=1337 \