Добавлена отладочная информация
parent
4169b9a6b9
commit
a2b7dd5c52
10
Dockerfile
10
Dockerfile
|
|
@ -28,4 +28,14 @@ RUN python3.11 -m pip install --upgrade pip
|
||||||
RUN python3.11 -m pip cache purge
|
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 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"]
|
CMD ["python", "main.py"]
|
||||||
Loading…
Reference in New Issue