Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ For Motoko canister development.

| Tool | Version |
|---|---|
| [icp-cli](https://cli.internetcomputer.org) | 0.3.2 |
| [icp-cli](https://cli.internetcomputer.org) | 1.0.0 |
| [ic-wasm](https://github.com/dfinity/ic-wasm) | 0.9.11 |
| [mops](https://mops.one) | 2.13.2 |
| [mops](https://mops.one) | 2.14.1 |
| moc | installed per-project via `mops install` |
| [yq](https://github.com/mikefarah/yq) | 4.53.3 |
| Node.js | 24.15.0 |
| pnpm | 11.4.0 |

```bash
docker pull ghcr.io/dfinity/icp-dev-env-motoko:latest # always current
docker pull ghcr.io/dfinity/icp-dev-env-motoko:0.3.2 # pinned
docker pull ghcr.io/dfinity/icp-dev-env-motoko:1.0.0 # pinned
```

### `icp-dev-env-rust`
Expand All @@ -29,7 +29,7 @@ For Rust canister development.

| Tool | Version |
|---|---|
| [icp-cli](https://cli.internetcomputer.org) | 0.3.2 |
| [icp-cli](https://cli.internetcomputer.org) | 1.0.0 |
| [ic-wasm](https://github.com/dfinity/ic-wasm) | 0.9.11 |
| [candid-extractor](https://github.com/dfinity/cdk-rs) | 0.1.4 |
| [yq](https://github.com/mikefarah/yq) | 4.53.3 |
Expand All @@ -40,7 +40,7 @@ For Rust canister development.

```bash
docker pull ghcr.io/dfinity/icp-dev-env-rust:latest # always current
docker pull ghcr.io/dfinity/icp-dev-env-rust:0.3.2 # pinned
docker pull ghcr.io/dfinity/icp-dev-env-rust:1.0.0 # pinned
```

### `icp-dev-env-all`
Expand All @@ -49,10 +49,10 @@ Combined Motoko and Rust development environment. Use this when your project inc

| Tool | Version |
|---|---|
| [icp-cli](https://cli.internetcomputer.org) | 0.3.2 |
| [icp-cli](https://cli.internetcomputer.org) | 1.0.0 |
| [ic-wasm](https://github.com/dfinity/ic-wasm) | 0.9.11 |
| [candid-extractor](https://github.com/dfinity/cdk-rs) | 0.1.4 |
| [mops](https://mops.one) | 2.13.2 |
| [mops](https://mops.one) | 2.14.1 |
| moc | installed per-project via `mops install` |
| [yq](https://github.com/mikefarah/yq) | 4.53.3 |
| Rust | 1.95.0 |
Expand All @@ -62,7 +62,7 @@ Combined Motoko and Rust development environment. Use this when your project inc

```bash
docker pull ghcr.io/dfinity/icp-dev-env-all:latest # always current
docker pull ghcr.io/dfinity/icp-dev-env-all:0.3.2 # pinned
docker pull ghcr.io/dfinity/icp-dev-env-all:1.0.0 # pinned
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions all/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ FROM rust:1.95.0-slim-bookworm
ARG NODE_VERSION=24.15.0
ARG NVM_VERSION=v0.40.1
ARG PNPM_VERSION=11.4.0
ARG ICP_CLI_VERSION=0.3.2
ARG ICP_CLI_VERSION=1.0.0
ARG IC_WASM_VERSION=0.9.11
ARG CANDID_EXTRACTOR_VERSION=0.1.4
ARG IC_MOPS_VERSION=2.13.2
ARG IC_MOPS_VERSION=2.14.1
ARG YQ_VERSION=4.53.3
ARG YQ_SHA256_AMD64=fa52a4e758c63d38299163fbdd1edfb4c4963247918bf9c1c5d31d84789eded4
ARG YQ_SHA256_ARM64=578648e463a11c1b6db6010cbf41eafed6bee79466fcffa1bb446672cf7945ea
Expand Down
4 changes: 2 additions & 2 deletions motoko/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ FROM debian:bookworm-slim
ARG NODE_VERSION=24.15.0
ARG NVM_VERSION=v0.40.1
ARG PNPM_VERSION=11.4.0
ARG ICP_CLI_VERSION=0.3.2
ARG ICP_CLI_VERSION=1.0.0
ARG IC_WASM_VERSION=0.9.11
ARG IC_MOPS_VERSION=2.13.2
ARG IC_MOPS_VERSION=2.14.1
ARG YQ_VERSION=4.53.3
ARG YQ_SHA256_AMD64=fa52a4e758c63d38299163fbdd1edfb4c4963247918bf9c1c5d31d84789eded4
ARG YQ_SHA256_ARM64=578648e463a11c1b6db6010cbf41eafed6bee79466fcffa1bb446672cf7945ea
Expand Down
2 changes: 1 addition & 1 deletion rust/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM rust:1.95.0-slim-bookworm
ARG NODE_VERSION=24.15.0
ARG NVM_VERSION=v0.40.1
ARG PNPM_VERSION=11.4.0
ARG ICP_CLI_VERSION=0.3.2
ARG ICP_CLI_VERSION=1.0.0
ARG IC_WASM_VERSION=0.9.11
ARG CANDID_EXTRACTOR_VERSION=0.1.4
ARG YQ_VERSION=4.53.3
Expand Down
Loading