From 2529e3f2f0397ee6dec6c33b1006d6978fc8c61e Mon Sep 17 00:00:00 2001 From: Pavel Tishkov Date: Mon, 6 Jan 2025 17:40:41 +0300 Subject: [PATCH] fix(module) fix python deps Signed-off-by: Pavel Tishkov --- werf.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/werf.yaml b/werf.yaml index 4b551ff96..d9bcc91d6 100644 --- a/werf.yaml +++ b/werf.yaml @@ -120,12 +120,15 @@ shell: cat images_digests.json --- image: python-dependencies -from: python:3.9-slim +from: {{ .Images.BASE_ALT_P11 }} fromCacheVersion: "2024-11-07.1" git: - add: /lib/python/requirements.txt to: /requirements.txt shell: + beforeInstall: + - apt-get update + - apt-get install -y python3 python3-module-pip-run setup: - pip3 install -r /requirements.txt -t /dist ---