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?

devcontainerにgitやnodeなどのツールを簡単にインストールする方法

Posted at

はじめに

devcontainerにはDockerfileにインストール処理を書かなくても簡単にミドルウェアをインストールすることができるFeaturesという機能があります!これによってdevcontainer内にgitやnodeの他、AWS CLIなどのコマンドラインツールをインストールすることができます!

作成方法

devcontainer.jsonのfeaturesフィールドに下記のページから入れたいツールを選んでURLをコピーし、入力するだけ!
反映にはコンテナのrebuildが必要なので注意してください

こんな感じ

{
"features": {
		"ghcr.io/devcontainers/features/node:1": {},
		"ghcr.io/devcontainers-community/npm-features/typescript:1": {},
		"ghcr.io/devcontainers/features/git:1": {},
		"ghcr.io/shyim/devcontainers-features/bun:0": {},
        "ghcr.io/devcontainers/features/aws-cli:1": {}
	}
 }

参考文献

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?