LoginSignup
0
0

More than 1 year has passed since last update.

Dockerfile内のCMDで指定したコマンドがうまく動かない時の対処法【備忘録】

Last updated at Posted at 2022-05-16

Dockerfileを記述する際に、
CMDコマンドの記述においてつまづいた点があったため、
備忘録を残す。

Dockerfile(NG例)
CMD ["cd", "apps/"]
CMD ["python3", "main.py"]

CMDでpythonのコードを実行するコマンドを記載する際に、
main.pyが含まれるディレクトリにcdで移動する必要があったとする。

その際にcdコマンドをCMDで渡しても、ディレクトリの移動が反映されない。

そんなとき、下記のようにすると解決する。

Dockerfile(OK例)
WORKDIR ["apps/"]
CMD ["python3", "main.py"]
0
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
0
0