From 73842a314743213f3807ec7e9196306044f8c80d Mon Sep 17 00:00:00 2001 From: t0rbik Date: Sat, 23 Sep 2023 15:07:50 +0200 Subject: [PATCH] do not use wheels --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 100bc4a..1697e05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get clean WORKDIR /app COPY ./ /app -RUN pip install --no-cache-dir -e . +RUN pip install -e . --no-binary :all: --no-cache-dir EXPOSE 3000