-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from zama-ai/ci/fix-dev-image-build
Fix developer image build
- Loading branch information
Showing
3 changed files
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
|
||
|
||
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 | ||
|
||
WORKDIR /config | ||
|
||
ADD ./node/evmos/private.ed25519 . | ||
ADD ./node/evmos/public.ed25519 . | ||
ADD ./private.ed25519 . | ||
ADD ./public.ed25519 . | ||
ADD ./scripts/prepare_volumes_from_fhe_tool.sh . | ||
ADD ./scripts/prepare_validator_ci.sh . | ||
ADD ./scripts/run_developer_image.sh . | ||
|
||
|
||
COPY --from=oracle-env /usr/local/app/fhevm-requires-db . | ||
COPY --from=oracle-env /usr/local/app/fhevm-decryptions-db . | ||
COPY --from=oracle-env /usr/local/app/Rocket.toml . | ||
COPY --from=tfhe-cli /usr/local/bin/fhevm-tfhe-cli /usr/local/bin | ||
|
||
EXPOSE 26656 26657 1317 9090 8545 8546 8001 | ||
|
||
ENTRYPOINT ["./run_developer_image.sh"] | ||
ENTRYPOINT ["./run_developer_image.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters