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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For Motoko canister development.

| Tool | Version |
|---|---|
| [icp-cli](https://cli.internetcomputer.org) | 0.2.7 |
| [icp-cli](https://cli.internetcomputer.org) | 0.3.1 |
| [ic-wasm](https://github.com/dfinity/ic-wasm) | 0.9.11 |
| [mops](https://mops.one) | 2.13.2 |
| moc | installed per-project via `mops install` |
Expand All @@ -19,7 +19,7 @@ For Motoko canister development.

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

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

| Tool | Version |
|---|---|
| [icp-cli](https://cli.internetcomputer.org) | 0.2.7 |
| [icp-cli](https://cli.internetcomputer.org) | 0.3.1 |
| [ic-wasm](https://github.com/dfinity/ic-wasm) | 0.9.11 |
| Rust | 1.95.0 |
| wasm32-unknown-unknown target | — |
Expand All @@ -37,7 +37,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:1.0.0 # pinned
docker pull ghcr.io/dfinity/icp-dev-env-rust:0.3.1 # pinned
```

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

| Tool | Version |
|---|---|
| [icp-cli](https://cli.internetcomputer.org) | 0.2.7 |
| [icp-cli](https://cli.internetcomputer.org) | 0.3.1 |
| [ic-wasm](https://github.com/dfinity/ic-wasm) | 0.9.11 |
| [mops](https://mops.one) | 2.13.2 |
| moc | installed per-project via `mops install` |
Expand All @@ -57,7 +57,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:1.0.0 # pinned
docker pull ghcr.io/dfinity/icp-dev-env-all:0.3.1 # pinned
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion all/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.2.7
ARG ICP_CLI_VERSION=0.3.1
ARG IC_WASM_VERSION=0.9.11
ARG IC_MOPS_VERSION=2.13.2

Expand Down
2 changes: 1 addition & 1 deletion motoko/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ 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.2.7
ARG ICP_CLI_VERSION=0.3.1
ARG IC_WASM_VERSION=0.9.11
ARG IC_MOPS_VERSION=2.13.2

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.2.7
ARG ICP_CLI_VERSION=0.3.1
ARG IC_WASM_VERSION=0.9.11

ENV NVM_DIR=/root/.nvm
Expand Down
Loading