1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Docker環境の更新:Pythonパッケージを追加する

Posted at

DockerでAnacondaデータサイエンス環境構築後、分析を進めていると、パッケージを追加したくなりました。
既に構築したDockerコンテナに、Pythonパッケージを追加したときのメモです。

Dockerコンテナに入る

$ docker exec -it <container> bash

パッケージをインストール

pip install <package>

Dockerfileを更新する

データサイエンス環境構築したDockerfileが格納されているフォルダに移動し、DockerfileをSublime textで起動して、追記する。

$ subl Dockerfile

※ どこかのタイミングでdocker buildで、まとめてdockerイメージを更新する。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?