diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-12-10 21:17:31 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-12-10 21:17:31 +0900 |
commit | eb5a9e30352f7b3aec6dcfced736192b6d12cdae (patch) | |
tree | b889aee2ce76408e3bd4f11630f88a389ae8069d | |
parent | a6501a16bf5edb999f3e423ca48363906ef83e88 (diff) |
dockerfile: do not run ldconfig in alpine
-rw-r--r-- | docker/alpine-3.17.Dockerfile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docker/alpine-3.17.Dockerfile b/docker/alpine-3.17.Dockerfile index aca4901..9fce2bd 100644 --- a/docker/alpine-3.17.Dockerfile +++ b/docker/alpine-3.17.Dockerfile @@ -37,6 +37,4 @@ RUN cd ${mscpdir} \ # install mscp python module RUN cd ${mscpdir} \ - && python3 pysetup.py install --user \ - && ldconfig - + && python3 pysetup.py install --user |