Skip to content

Commit cf36255

Browse files
authored
Fix: validator docker missing env (#196)
* add missing env var to validator env * update readme Signed-off-by: Jannik Straube <[email protected]> --------- Signed-off-by: Jannik Straube <[email protected]>
1 parent 0172322 commit cf36255

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,14 @@ For complete setup instructions, refer to our [Development Setup Guide](docs/dev
4545
### Install Worker CLI:
4646
You can install the latest worker CLI using:
4747
```
48-
curl -sSL https://raw.githubusercontent.com/PrimeIntellect-ai/protocol/develop/worker/scripts/install.sh | bash
48+
curl -sSL https://raw.githubusercontent.com/PrimeIntellect-ai/protocol/main/worker/scripts/install.sh | bash
4949
```
5050

5151
For the latest dev build use:
5252
```
5353
curl -sSL https://raw.githubusercontent.com/PrimeIntellect-ai/protocol/develop/worker/scripts/install.sh | bash -s -- --dev
5454
```
5555

56-
5756
## Documentation
5857
- [Development Setup Guide](docs/development-setup.md) - Detailed installation and environment setup instructions
5958
- [Usage Guide](docs/usage-guide.md) - Instructions for dispatching tasks, monitoring, and system management

validator/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ $([ ! -z "$S3_CREDENTIALS" ] && echo "--s3-credentials $S3_CREDENTIALS") \
3030
$([ ! -z "$BUCKET_NAME" ] && echo "--bucket-name $BUCKET_NAME") \
3131
$([ ! -z "$LOG_LEVEL" ] && echo "--log-level $LOG_LEVEL") \
3232
$([ ! -z "$REDIS_URL" ] && echo "--redis-url $REDIS_URL") \
33+
$([ ! -z "$TOPLOC_GRACE_INTERVAL" ] && echo "--toploc-grace-interval $TOPLOC_GRACE_INTERVAL") \
3334
"$@"' > /entrypoint.sh && \
3435
chmod +x /entrypoint.sh
3536

0 commit comments

Comments
 (0)