Skip to content

Commit

Permalink
Change tag to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
klaus993 committed Oct 10, 2024
1 parent 65cc946 commit 398d86b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
- base

aggregator:
image: ghcr.io/lambdaclass/aligned_layer/aggregator:v0.8.0
image: ghcr.io/lambdaclass/aligned_layer/aggregator:latest
build:
context: .
dockerfile: docker/aggregator.Dockerfile
Expand Down Expand Up @@ -57,7 +57,7 @@ services:
- excluded

operator-deposit-into-mock-strategy:
image: ghcr.io/lambdaclass/aligned_layer/operator:v0.8.0
image: ghcr.io/lambdaclass/aligned_layer/operator:latest
command: ["aligned-layer-operator", "deposit-into-strategy", "--config", "./config-files/config-docker.yaml", "--strategy-address", "0xc5a5C42992dECbae36851359345FE25997F5C42d", "--amount", "100000000000000000"]
build:
context: .
Expand All @@ -75,7 +75,7 @@ services:
- excluded

operator-register-with-aligned-layer:
image: ghcr.io/lambdaclass/aligned_layer/operator:v0.8.0
image: ghcr.io/lambdaclass/aligned_layer/operator:latest
command: ["aligned-layer-operator", "register", "--config", "./config-files/config-docker.yaml"]
build:
context: .
Expand All @@ -84,7 +84,7 @@ services:
- excluded

operator:
image: ghcr.io/lambdaclass/aligned_layer/operator:v0.8.0
image: ghcr.io/lambdaclass/aligned_layer/operator:latest
command: ["aligned-layer-operator", "start", "--config", "./config-files/config-docker.yaml"]
build:
context: .
Expand All @@ -102,7 +102,7 @@ services:
- excluded

batcher:
image: ghcr.io/lambdaclass/aligned_layer/batcher:v0.8.0
image: ghcr.io/lambdaclass/aligned_layer/batcher:latest
environment:
AWS_SECRET_ACCESS_KEY: test
AWS_REGION: us-east-2
Expand All @@ -119,7 +119,7 @@ services:
- batcher

aligned_base:
image: ghcr.io/lambdaclass/aligned_layer/aligned_base:v0.8.0
image: ghcr.io/lambdaclass/aligned_layer/aligned_base:latest
build:
context: .
dockerfile: docker/aligned_base.Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion docker/aggregator.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/lambdaclass/aligned_layer/aligned_base:testnet AS builder
FROM ghcr.io/lambdaclass/aligned_layer/aligned_base:latest AS builder

WORKDIR /aligned_layer

Expand Down
2 changes: 1 addition & 1 deletion docker/batcher.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/lambdaclass/aligned_layer/aligned_base:testnet AS builder
FROM ghcr.io/lambdaclass/aligned_layer/aligned_base:latest AS builder

RUN apt update -y
RUN apt install -y gcc
Expand Down
2 changes: 1 addition & 1 deletion docker/operator.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/lambdaclass/aligned_layer/aligned_base:testnet AS builder
FROM ghcr.io/lambdaclass/aligned_layer/aligned_base:latest AS builder

RUN apt update -y
RUN apt install -y gcc
Expand Down

0 comments on commit 398d86b

Please sign in to comment.