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