Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update docker build docs #358

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions wallet-core/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ Prerequisite is a working Docker installation.
The command for building the Docker image:

```shell
docker build docker/wallet-core --tag wallet-core-dev
docker build --tag wallet-core-dev .
```

Then launch the container:
Expand All @@ -178,7 +178,6 @@ docker run -i -t wallet-core-dev /bin/bash
Inside the container the build commands can be executed (as described above; note that install-dependencies is not necessary):

```shell
cd wallet-core
./tools/build-and-test
```

Expand All @@ -191,7 +190,6 @@ Unit tests and [wallet console utility](walletconsole.md) can be executed straig

```shell
docker run -i -t trustwallet/wallet-core
cd wallet-core
./build/tests/tests tests
./build/walletconsole/walletconsole
exit
Expand Down