summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2023-12-10 17:04:55 +0900
committerRyo Nakamura <upa@haeena.net>2023-12-10 17:04:55 +0900
commit260e39471d3d4384857e7598db4c1d481181a6eb (patch)
tree35c2d76e7f90bf76a838eacecf58ccc1961b59a2 /docker
parent2b71c4bf8c8c072661dbe0c1a0e7bfe1539cb439 (diff)
rename setup.py to pysetup.py
to prevent dh_auto_build from automatically detecting setup.py.
Diffstat (limited to 'docker')
-rw-r--r--docker/almalinux-8.8.Dockerfile2
-rw-r--r--docker/alpine-3.17.Dockerfile2
-rw-r--r--docker/rocky-8.8.Dockerfile2
-rw-r--r--docker/ubuntu-20.04.Dockerfile2
-rw-r--r--docker/ubuntu-22.04.Dockerfile2
5 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