diff options
Diffstat (limited to 'docker/ubuntu-20.04.Dockerfile')
-rw-r--r-- | docker/ubuntu-20.04.Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docker/ubuntu-20.04.Dockerfile b/docker/ubuntu-20.04.Dockerfile index e1dac03..d00f7c8 100644 --- a/docker/ubuntu-20.04.Dockerfile +++ b/docker/ubuntu-20.04.Dockerfile @@ -10,7 +10,7 @@ RUN set -ex && apt-get update && apt-get install -y --no-install-recommends \ # install pytest, and sshd for test RUN apt-get install -y --no-install-recommends \ - python3 python3-pip openssh-server + python3 python3-pip python3-dev openssh-server RUN python3 -m pip install pytest @@ -33,3 +33,7 @@ RUN cd ${mscpdir} \ && make \ && cpack -G DEB CPackConfig.cmake \ && dpkg -i *.deb + +# install mscp python module +RUN cd ${mscpdir} \ + && python3 setup.py install --user |