diff options
| author | Ryo Nakamura <upa@haeena.net> | 2023-03-10 22:06:46 +0900 |
|---|---|---|
| committer | Ryo Nakamura <upa@haeena.net> | 2023-03-10 22:07:07 +0900 |
| commit | d22c02b7936691340ea0efd097565a87151458fb (patch) | |
| tree | b102961c5162d2ee0af9ce1b330512033d1e394e /docker | |
| parent | 2477647a3bf66d9dceed301622076079529f1689 (diff) | |
remove numpy from test, and fix compiling single binary mscp
Diffstat (limited to 'docker')
| -rw-r--r-- | docker/alpine-3.17.Dockerfile | 2 | ||||
| -rw-r--r-- | docker/centos-8.Dockerfile | 4 | ||||
| -rw-r--r-- | docker/rocky-8.6.Dockerfile | 4 | ||||
| -rw-r--r-- | docker/ubuntu-20.04.Dockerfile | 4 | ||||
| -rw-r--r-- | docker/ubuntu-22.04.Dockerfile | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/docker/alpine-3.17.Dockerfile b/docker/alpine-3.17.Dockerfile index 56c7ba9..bf5679e 100644 --- a/docker/alpine-3.17.Dockerfile +++ b/docker/alpine-3.17.Dockerfile @@ -10,7 +10,7 @@ RUN apk add --no-cache \ gcc make cmake python3 py3-pip perl linux-headers libc-dev \ openssh bash python3-dev g++ -RUN pip3 install conan pytest numpy +RUN pip3 install conan pytest # Build mscp as a single binary RUN conan profile detect --force diff --git a/docker/centos-8.Dockerfile b/docker/centos-8.Dockerfile index 586b1e9..d9a4f20 100644 --- a/docker/centos-8.Dockerfile +++ b/docker/centos-8.Dockerfile @@ -9,11 +9,11 @@ RUN cd /etc/yum.repos.d/ RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* RUN sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* -# install numpy and pytest, sshd for test, and rpm-build +# install pytest, sshd for test, and rpm-build RUN set -ex && yum -y update && yum -y install \ python3 python3-pip openssh openssh-server openssh-clients rpm-build -RUN python3 -m pip install numpy pytest +RUN python3 -m pip install pytest # preparation for sshd diff --git a/docker/rocky-8.6.Dockerfile b/docker/rocky-8.6.Dockerfile index 323129c..abb2cf5 100644 --- a/docker/rocky-8.6.Dockerfile +++ b/docker/rocky-8.6.Dockerfile @@ -4,11 +4,11 @@ ARG mscpdir="/mscp" COPY . ${mscpdir} -# install numpy and pytest, sshd for test, and rpm-build +# install pytest, sshd for test, and rpm-build RUN set -ex && yum -y install \ python3 python3-pip openssh openssh-server openssh-clients rpm-build -RUN python3 -m pip install numpy pytest +RUN python3 -m pip install pytest # preparation for sshd diff --git a/docker/ubuntu-20.04.Dockerfile b/docker/ubuntu-20.04.Dockerfile index 0ca4148..e1dac03 100644 --- a/docker/ubuntu-20.04.Dockerfile +++ b/docker/ubuntu-20.04.Dockerfile @@ -8,11 +8,11 @@ COPY . ${mscpdir} RUN set -ex && apt-get update && apt-get install -y --no-install-recommends \ ca-certificates -# install numpy and pytest, and sshd for test +# install pytest, and sshd for test RUN apt-get install -y --no-install-recommends \ python3 python3-pip openssh-server -RUN python3 -m pip install numpy pytest +RUN python3 -m pip install pytest # preparation for sshd diff --git a/docker/ubuntu-22.04.Dockerfile b/docker/ubuntu-22.04.Dockerfile index c00f695..26ba009 100644 --- a/docker/ubuntu-22.04.Dockerfile +++ b/docker/ubuntu-22.04.Dockerfile @@ -8,11 +8,11 @@ COPY . ${mscpdir} RUN set -ex && apt-get update && apt-get install -y --no-install-recommends \ ca-certificates -# install numpy and pytest, and sshd for test +# install pytest, and sshd for test RUN apt-get install -y --no-install-recommends \ python3 python3-pip openssh-server -RUN python3 -m pip install numpy pytest +RUN python3 -m pip install pytest # preparation for sshd |
