From e48ef60b15493d582f233a6f4ff26796f09af19e Mon Sep 17 00:00:00 2001 From: Anton Smorodskyi Date: Fri, 31 May 2024 23:19:21 +0200 Subject: [PATCH] Fix Dockerfile_dev to provide all needed deps --- containers/Dockerfile_dev | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/Dockerfile_dev b/containers/Dockerfile_dev index c97bf77e..8ddbe6bc 100644 --- a/containers/Dockerfile_dev +++ b/containers/Dockerfile_dev @@ -1,9 +1,9 @@ FROM registry.suse.com/bci/python:3.11 -COPY requirements.txt /pcw/ +COPY requirements.txt requirements_k8s.txt requirements_test.txt /pcw/ RUN source /etc/os-release && zypper addrepo -G -cf "https://download.opensuse.org/repositories/SUSE:/CA/$VERSION_ID/SUSE:CA.repo" && \ zypper -n in ca-certificates-suse gcc libffi-devel && \ - pip install --no-cache-dir wheel && pip install --no-cache-dir -r /pcw/requirements.txt && zypper clean && rm -rf /var/cache + pip install --no-cache-dir wheel && pip install --no-cache-dir -r /pcw/requirements_test.txt && zypper clean && rm -rf /var/cache ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 UWSGI_WSGI_FILE=/pcw/webui/wsgi.py UWSGI_MASTER=1 ENV UWSGI_HTTP_AUTO_CHUNKED=1 UWSGI_HTTP_KEEPALIVE=1 UWSGI_LAZY_APPS=1 UWSGI_WSGI_ENV_BEHAVIOR=holy