こちらの書籍を参考に、Dockerの勉強をしています。
その過程の中で、コンテナを起動しパッケージをインストール、コンテナにbashでログインするという作業があるのですが、以下のような結果になります。
% docker container run --name base -it -p 8080:80 python:3.7.5-slim bash root@79e1e29658c0:/# pip install flask==1.1.1 Unable to find image 'python:3.7.5-slim' locally 3.7.5-slim: Pulling from library/python 000eee12ec04: Pull complete ddc2d83f8229: Pull complete 735b0bee82a3: Pull complete 8c69dcedfc84: Pull complete 495e1cccc7f9: Pull complete Digest: sha256:59af1bb7fb92ff97c9a23abae23f6beda13a95dbfd8100c7a2f71d150c0dc6e5 Status: Downloaded newer image for python:3.7.5-slim bash: root@79e1e29658c0:/#: No such file or directory
pythonのimageはダウンロードできているのですが、シェルに入れないようです。
このエラーについて、解決方法がわからず困っています。
ローカル環境ではzshを使っているのですが関係ありますでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/04 06:30