-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure the CI pipeline to trigger on tag creation. Tag new Docker images with `:latest` and their version number.
- Loading branch information
Showing
4 changed files
with
46 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
** @dfinity/testing-verification | ||
** @dfinity/testing-verification @dfinity/sdk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,28 @@ | ||
# ICP Developer Environment | ||
|
||
This repo contains a Docker image that is used for setting up a remote, hybrid or local development environments for new developers on the IC. | ||
|
||
## Usage | ||
This container image can be used as a base for creating a dev container environment that targets ICP development. | ||
Take a look at the repositories below to see dev containers in action: | ||
- [ICP Hello World Motoko](https://github.com/dfinity/icp-hello-world-motoko) | ||
- [ICP Hello World Rust](https://github.com/dfinity/icp-hello-world-rust) | ||
|
||
### Packages and Releases | ||
On the right side, you will find new releases and the latest packages. | ||
You can download the Docker image with | ||
|
||
```bash | ||
docker pull ghcr.io/dfinity/icp-dev-env:latest | ||
``` | ||
|
||
or | ||
|
||
```bash | ||
docker pull ghcr.io/dfinity/icp-dev-env:<version> | ||
``` | ||
for a specific version. | ||
|
||
## Creating a new Release | ||
To release a new version, create a new tag with the corresponding version number. | ||
The CI pipeline will automatically build and push the new image to the GitHub Container Registry (ghcr.io). |