{"id":30703132,"url":"https://github.com/dfinity/icp-dev-env","last_synced_at":"2026-06-11T00:01:21.618Z","repository":{"id":218683198,"uuid":"745445283","full_name":"dfinity/icp-dev-env","owner":"dfinity","description":"Docker images for canister development on ICP.","archived":false,"fork":false,"pushed_at":"2026-06-09T15:25:44.000Z","size":46,"stargazers_count":13,"open_issues_count":0,"forks_count":6,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-06-09T17:22:17.695Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dfinity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-19T10:53:54.000Z","updated_at":"2026-06-09T15:34:49.000Z","dependencies_parsed_at":"2024-05-02T08:54:59.070Z","dependency_job_id":"2a8ef645-216f-4f45-a7a9-4e4c73876d21","html_url":"https://github.com/dfinity/icp-dev-env","commit_stats":null,"previous_names":["dfinity/icp-dev-env"],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/dfinity/icp-dev-env","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Ficp-dev-env","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Ficp-dev-env/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Ficp-dev-env/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Ficp-dev-env/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dfinity","download_url":"https://codeload.github.com/dfinity/icp-dev-env/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Ficp-dev-env/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34175887,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-02T16:56:00.618Z","updated_at":"2026-06-11T00:01:21.609Z","avatar_url":"https://github.com/dfinity.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ICP Developer Environment\n\nDocker images for ICP canister development, designed for use with GitHub Codespaces and local dev containers.\n\n## Images\n\n### `icp-dev-env-motoko`\n\nFor Motoko canister development.\n\n| Tool | Version |\n|---|---|\n| [icp-cli](https://cli.internetcomputer.org) | 0.3.2 |\n| [ic-wasm](https://github.com/dfinity/ic-wasm) | 0.9.11 |\n| [mops](https://mops.one) | 2.13.2 |\n| moc | installed per-project via `mops install` |\n| Node.js | 24.15.0 |\n| pnpm | 11.4.0 |\n\n```bash\ndocker pull ghcr.io/dfinity/icp-dev-env-motoko:latest   # always current\ndocker pull ghcr.io/dfinity/icp-dev-env-motoko:0.3.2    # pinned\n```\n\n### `icp-dev-env-rust`\n\nFor Rust canister development.\n\n| Tool | Version |\n|---|---|\n| [icp-cli](https://cli.internetcomputer.org) | 0.3.2 |\n| [ic-wasm](https://github.com/dfinity/ic-wasm) | 0.9.11 |\n| [candid-extractor](https://github.com/dfinity/cdk-rs) | 0.1.4 |\n| Rust | 1.95.0 |\n| wasm32-unknown-unknown target | — |\n| Node.js | 24.15.0 |\n| pnpm | 11.4.0 |\n\n```bash\ndocker pull ghcr.io/dfinity/icp-dev-env-rust:latest   # always current\ndocker pull ghcr.io/dfinity/icp-dev-env-rust:0.3.2    # pinned\n```\n\n### `icp-dev-env-all`\n\nCombined Motoko and Rust development environment. Use this when your project includes both Motoko and Rust canisters.\n\n| Tool | Version |\n|---|---|\n| [icp-cli](https://cli.internetcomputer.org) | 0.3.2 |\n| [ic-wasm](https://github.com/dfinity/ic-wasm) | 0.9.11 |\n| [candid-extractor](https://github.com/dfinity/cdk-rs) | 0.1.4 |\n| [mops](https://mops.one) | 2.13.2 |\n| moc | installed per-project via `mops install` |\n| Rust | 1.95.0 |\n| wasm32-unknown-unknown target | — |\n| Node.js | 24.15.0 |\n| pnpm | 11.4.0 |\n\n```bash\ndocker pull ghcr.io/dfinity/icp-dev-env-all:latest   # always current\ndocker pull ghcr.io/dfinity/icp-dev-env-all:0.3.2    # pinned\n```\n\n## Usage\n\nReference the image in your `.devcontainer/devcontainer.json`:\n\n```json\n{\n  \"name\": \"My Example (Motoko)\",\n  \"image\": \"ghcr.io/dfinity/icp-dev-env-motoko:latest\",\n  \"workspaceFolder\": \"/workspaces/examples/motoko/my-example\",\n  \"forwardPorts\": [8000],\n  \"portsAttributes\": {\n    \"8000\": { \"label\": \"ICP local network\", \"onAutoForward\": \"ignore\" }\n  },\n  \"postCreateCommand\": \"mops install\",\n  \"postStartCommand\": \"icp network start -d\",\n  \"customizations\": {\n    \"vscode\": {\n      \"extensions\": [\"dfinity-foundation.vscode-motoko\", \"stateful.runme\"]\n    }\n  }\n}\n```\n\nSee [dfinity/examples](https://github.com/dfinity/examples) for full usage across all examples.\n\n## Releasing\n\nTool versions are pinned via `ARG` in each Dockerfile. To update a version:\n\n1. Update the relevant `ARG` in the affected Dockerfile(s) (`motoko/Dockerfile`, `rust/Dockerfile`, `all/Dockerfile`)\n2. Create a new GitHub Release with a semver tag (e.g. `v1.0.1`) — the CI pipeline builds and pushes all images to GHCR\n\nImages are built for `linux/amd64` and `linux/arm64`.\n\n\u003e **Note:** The release must be published as non-draft to trigger the CI pipeline.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfinity%2Ficp-dev-env","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdfinity%2Ficp-dev-env","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfinity%2Ficp-dev-env/lists"}