From f71aece73297f45b42eb498fbadcfc4f454740d7 Mon Sep 17 00:00:00 2001 From: Abdullah Barhoum Date: Sun, 18 Sep 2022 12:12:57 +0200 Subject: [PATCH] latest transformer --- services/hlky/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/services/hlky/Dockerfile b/services/hlky/Dockerfile index 926a61d..163a223 100644 --- a/services/hlky/Dockerfile +++ b/services/hlky/Dockerfile @@ -21,9 +21,6 @@ conda env update --file environment.yaml -n base conda clean -a -y EOF -# new dependency, should be added to the environment.yaml -RUN pip install -U --no-cache-dir pyperclip - # Note: don't update the sha of previous versions because the install will take forever # instead, update the repo state in a later step # ARG BRANCH=master @@ -39,6 +36,8 @@ conda env update --file environment.yaml -n base conda clean -a -y EOF +RUN pip uninstall transformers -y && pip install -U --no-cache-dir pyperclip transformers==4.22 + # Latent diffusion RUN <