update readme and fix path

This commit is contained in:
Anton Livaja 2025-06-05 17:33:04 -07:00
parent eda90a59ac
commit 1a96cffebc
Signed by: anton
GPG Key ID: 44A86CFF1FDF0E85
2 changed files with 10 additions and 4 deletions

View File

@ -20,5 +20,5 @@ WORKDIR foundry-1.2.2/
RUN cargo build --release RUN cargo build --release
COPY keeta-locker ./ COPY keeta-locker ./
RUN ./target/release/forge build --contracts blockchain/src/LPLocker.sol --force --use ./usr/bin/solc RUN ./target/release/forge build --contracts blockchain/src/LPLocker.sol --force --use /usr/bin/solc

View File

@ -1,11 +1,17 @@
# Build ## Deterministic `solc` + `foundry`
## Build
```sh ```sh
docker build -f Containerfile . --progress=plain docker build -f Containerfile . --progress=plain -t eth-tools
``` ```
# Load StageX Solidity ## Load StageX Solidity
```sh ```sh
docker load -i stagex-solc-0.8.30.tar docker load -i stagex-solc-0.8.30.tar
``` ```
## Interactive Mode
```sh
docker run -it eth-tool /bin/sh
```