diff options
-rw-r--r-- | docker/almalinux-8.8.Dockerfile | 2 | ||||
-rw-r--r-- | docker/alpine-3.17.Dockerfile | 2 | ||||
-rw-r--r-- | docker/rocky-8.8.Dockerfile | 2 | ||||
-rw-r--r-- | docker/ubuntu-20.04.Dockerfile | 2 | ||||
-rw-r--r-- | docker/ubuntu-22.04.Dockerfile | 2 | ||||
-rw-r--r-- | pysetup.py (renamed from setup.py) | 0 |
6 files changed, 5 insertions, 5 deletions
diff --git a/docker/almalinux-8.8.Dockerfile b/docker/almalinux-8.8.Dockerfile index f7a9ace..14af83c 100644 --- a/docker/almalinux-8.8.Dockerfile +++ b/docker/almalinux-8.8.Dockerfile @@ -32,5 +32,5 @@ RUN cd ${mscpdir} \ # install mscp python module RUN cd ${mscpdir} \ - && python3 setup.py install --user + && python3 pysetup.py install --user diff --git a/docker/alpine-3.17.Dockerfile b/docker/alpine-3.17.Dockerfile index b586586..eed4d0d 100644 --- a/docker/alpine-3.17.Dockerfile +++ b/docker/alpine-3.17.Dockerfile @@ -37,5 +37,5 @@ RUN cd ${mscpdir} \ # install mscp python module RUN cd ${mscpdir} \ - && python3 setup.py install --user + && python3 pysetup.py install --user diff --git a/docker/rocky-8.8.Dockerfile b/docker/rocky-8.8.Dockerfile index b09c626..1c048fa 100644 --- a/docker/rocky-8.8.Dockerfile +++ b/docker/rocky-8.8.Dockerfile @@ -31,5 +31,5 @@ RUN cd ${mscpdir} \ # install mscp python module RUN cd ${mscpdir} \ - && python3 setup.py install --user + && python3 pysetup.py install --user diff --git a/docker/ubuntu-20.04.Dockerfile b/docker/ubuntu-20.04.Dockerfile index 707a79d..af6d031 100644 --- a/docker/ubuntu-20.04.Dockerfile +++ b/docker/ubuntu-20.04.Dockerfile @@ -36,4 +36,4 @@ RUN cd ${mscpdir} \ # install mscp python module RUN cd ${mscpdir} \ - && python3 setup.py install --user + && python3 pysetup.py install --user diff --git a/docker/ubuntu-22.04.Dockerfile b/docker/ubuntu-22.04.Dockerfile index 673d880..1c24841 100644 --- a/docker/ubuntu-22.04.Dockerfile +++ b/docker/ubuntu-22.04.Dockerfile @@ -35,5 +35,5 @@ RUN cd ${mscpdir} \ # install mscp python module RUN cd ${mscpdir} \ - && python3 setup.py install --user + && python3 pysetup.py install --user |