add lsof to debug install

This commit is contained in:
Simon
2025-02-02 15:36:25 +07:00
parent a7d11f53a8
commit c7fc2666fa
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ RUN apt-get clean && apt-get -y update && apt-get -y install --no-install-recomm
# install debug tools for testing environment
RUN if [ "$INSTALL_DEBUG" ] ; then \
apt-get -y update && apt-get -y install --no-install-recommends \
vim htop bmon net-tools iputils-ping procps \
vim htop bmon net-tools iputils-ping procps lsof \
&& pip install --user ipython pytest pytest-django \
; fi