diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-09-05 21:20:38 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-09-05 21:20:38 +0900 |
commit | ccc4dedf30733b879c7780cd5f79ced4f4fd11b6 (patch) | |
tree | e567b04cf23b4c42539b6cb55412f60fa27b2555 | |
parent | 49e8e26f2a82c7c6e8350f6ed748064b975c7788 (diff) |
fix docker/alpine-3.17: no need to make install
because libmscp is installed by data_files.
-rw-r--r-- | docker/alpine-3.17.Dockerfile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/docker/alpine-3.17.Dockerfile b/docker/alpine-3.17.Dockerfile index 4a76c01..b586586 100644 --- a/docker/alpine-3.17.Dockerfile +++ b/docker/alpine-3.17.Dockerfile @@ -39,7 +39,3 @@ RUN cd ${mscpdir} \ RUN cd ${mscpdir} \ && python3 setup.py install --user -# Need Fix: A trick putting libmscp.so to python mscp module dir does not work on alpine, -# so install libmscp. -RUN cd ${mscpdir}/build \ - && make install |