From 98da5fecc3f2e646b9d033a11a7ab44b76cc783c Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Mon, 27 Jun 2022 21:41:59 +0300 Subject: [PATCH] Use wildcard for cryptg wheel name --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d2cb71e2..bd60d34b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,10 +49,10 @@ COPY requirements.txt /opt/mautrix-telegram/requirements.txt COPY optional-requirements.txt /opt/mautrix-telegram/optional-requirements.txt WORKDIR /opt/mautrix-telegram RUN apk add --virtual .build-deps python3-dev libffi-dev build-base \ - && pip3 install /cryptg-0.3.1-cp310-cp310-linux_x86_64.whl \ + && pip3 install /cryptg-*.whl \ && pip3 install --no-cache-dir -r requirements.txt -r optional-requirements.txt \ && apk del .build-deps \ - && rm -f /cryptg-0.3.1-cp310-cp310-linux_x86_64.whl + && rm -f /cryptg-*.whl COPY . /opt/mautrix-telegram RUN apk add git && pip3 install --no-cache-dir .[all] && apk del git \