From 3c2445f323985cd77fc6ac4f6008e56679c9e0d4 Mon Sep 17 00:00:00 2001 From: Harald Klimach Date: Wed, 21 May 2025 18:32:23 +0200 Subject: [PATCH] Activate pyenv before trying to build seeder --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 913ef92..e51f537 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,4 @@ ARG SEEDER_VERSION ENV SEEDER_VERSION=${SEEDER_VERSION} COPY . /tmp/seeder -RUN (cd /tmp/seeder && bin/waf configure install --notests --prefix=$VIRTUAL_ENV) && rm -rf /tmp/seeder +RUN (source $VIRTUAL_ENV/bin/activate && cd /tmp/seeder && bin/waf configure install --notests --prefix=$VIRTUAL_ENV) && rm -rf /tmp/seeder