1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00

Use zokrates dockerhub org

This commit is contained in:
Dennis Kuhnert 2018-07-07 18:01:26 +02:00
parent f3b7debffa
commit aa7e11aa88
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View file

@ -34,7 +34,7 @@ pipeline {
steps {
script {
ansiColor('xterm') {
dockerImage = docker.build("kyroy/zokrates")
dockerImage = docker.build("zokrates/zokrates")
dockerImage.inside {
sh 'RUSTFLAGS="-D warnings" cargo build'
}

View file

@ -21,7 +21,7 @@ Zokrates bridges this gap. It helps you create offchain programs and link them t
Using Docker is currently the recommended way to get started with Zokrates.
```bash
docker run -ti kyroy/zokrates /bin/bash
docker run -ti zokrates/zokrates /bin/bash
```
Or build yourself with the following commands.
```bash