Skip to content

Commit

Permalink
Fix developer image build
Browse files Browse the repository at this point in the history
  • Loading branch information
david-zk committed Jul 31, 2023
1 parent da39531 commit a8ef9e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/publish_developer_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:
uname -r
lsb_release -a
- name: Login to GitHub Container Registry
uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: List files in the repository
run: |
ls ${{ github.workspace }}
Expand All @@ -50,7 +57,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
context: ./evmos
file: docker/Dockerfile.evmos-node.developer
push: true
pull: true
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.evmos-node.developer
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/zama-ai/fhevm-requires-db:v0.1.4 as oracle-env
FROM ghcr.io/zama-ai/fhevm-decryptions-db:v0.1.5 as oracle-env
FROM ghcr.io/zama-ai/fhevm-tfhe-cli:v0.1.2 as tfhe-cli

FROM ghcr.io/zama-ai/evmos-node:v0.1.7-beta
Expand Down

0 comments on commit a8ef9e6

Please sign in to comment.