Skip to content

Commit

Permalink
fix: version reference
Browse files Browse the repository at this point in the history
  • Loading branch information
tenequm committed Dec 6, 2023
1 parent 806e012 commit 777d766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- run: |
docker login -u ${{ secrets.ORG_DOCKERHUB_USERNAME }} -p ${{ secrets.ORG_DOCKERHUB_TOKEN }}
docker buildx create --use
docker buildx build --push --platform linux/amd64,linux/arm64 -t mangatasolutions/aggregator:latest -f aggregator/Dockerfile .
docker buildx build --push --platform linux/amd64,linux/arm64 -t mangatasolutions/aggregator:${{ inputs.version }} -f aggregator/Dockerfile .
build-operator-image:
name: Build operator Docker image
runs-on: ubuntu-latest
Expand All @@ -30,4 +30,4 @@ jobs:
- run: |
docker login -u ${{ secrets.ORG_DOCKERHUB_USERNAME }} -p ${{ secrets.ORG_DOCKERHUB_TOKEN }}
docker buildx create --use
docker buildx build --push --platform linux/amd64,linux/arm64 -t mangatasolutions/operator:latest -f operator/Dockerfile .
docker buildx build --push --platform linux/amd64,linux/arm64 -t mangatasolutions/operator:${{ inputs.version }} -f operator/Dockerfile .
7 changes: 0 additions & 7 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ services:
build:
context: .
dockerfile: aggregator/Dockerfile
platforms:
- linux/amd64
- linux/arm64
depends_on:
anvil:
condition: service_healthy
Expand All @@ -33,7 +30,6 @@ services:
- ./:/app
command:
- --config
# - config-files/aggregator.yaml
- config-files/aggregator-docker-compose.yaml
- --credible-squaring-deployment
- contracts/script/output/31337/credible_squaring_avs_deployment_output.json
Expand All @@ -47,9 +43,6 @@ services:
build:
context: .
dockerfile: operator/Dockerfile
platforms:
- linux/amd64
- linux/arm64
depends_on: ['anvil', 'aggregator']
ports:
- 9010:9010
Expand Down

0 comments on commit 777d766

Please sign in to comment.