From a2b7dd5c52e3be95956f6925918a3157089327a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B5=D0=B2?= Date: Wed, 5 Nov 2025 17:52:15 +0500 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B0=20=D0=BE=D1=82=D0=BB=D0=B0=D0=B4=D0=BE=D1=87=D0=BD?= =?UTF-8?q?=D0=B0=D1=8F=20=D0=B8=D0=BD=D1=84=D0=BE=D1=80=D0=BC=D0=B0=D1=86?= =?UTF-8?q?=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7e1030c..ba66e64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,4 +28,14 @@ RUN python3.11 -m pip install --upgrade pip RUN python3.11 -m pip cache purge RUN echo Y | python3.11 -m pip install --no-cache-dir --upgrade -r /code/requirements.txt +RUN echo "=== Contents of requirements.txt ===" +RUN cat /code/requirements.txt +RUN echo "=== Python version ===" +RUN python3.11 --version +RUN echo "=== Installing dependencies ===" +RUN python3.11 -m pip install --upgrade pip +RUN echo Y | python3.11 -m pip install --no-cache-dir --upgrade -r /code/requirements.txt +RUN echo "=== Installed packages ===" +RUN python3.11 -m pip list | grep hvac + CMD ["python", "main.py"] \ No newline at end of file