diff --git a/Dockerfile b/Dockerfile index 070d6721..835faa7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,7 @@ RUN apt-get update -q \ language-pack-ja \ git \ libyaml-cpp-dev \ + libc-bin \ liblzma-dev # remove unnessesory package files @@ -52,7 +53,7 @@ USER apl RUN . ~/.bash_profile \ && pyenv install 3.11.2 \ && pyenv global 3.11.2 \ - && pip install --upgrade pip + && pip install --upgrade pip setuptools # install poetry RUN . ~/.bash_profile \ diff --git a/tests/Dockerfile b/tests/Dockerfile index b90f6268..4d0674ec 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -32,6 +32,7 @@ RUN apt-get update -q \ language-pack-ja \ git \ libyaml-cpp-dev \ + libc-bin \ liblzma-dev # remove unnessesory package files @@ -52,7 +53,7 @@ USER apl RUN . ~/.bash_profile \ && pyenv install 3.11.2 \ && pyenv global 3.11.2 \ - && pip install --upgrade pip + && pip install --upgrade pip setuptools # install poetry RUN . ~/.bash_profile \