d6348c009a
- introduced `test/utils/test_lib.inc.sh` to simplify usage of sandboxed node/client in the testsuite - it reuses code from `./script/{node,client}_lib.inc.sh` - use `wait_for_the_node_to_be_ready` to properly wait for the node to be launched rather to use a fexed delay - `test_multinode.sh` now launch 8 nodes.
11 lines
337 B
Docker
11 lines
337 B
Docker
FROM $base_image
|
|
|
|
COPY src /home/opam/tezos/src
|
|
COPY test /home/opam/tezos/test
|
|
COPY scripts /home/opam/tezos/scripts
|
|
|
|
RUN sudo chown -R opam /home/opam/tezos && \
|
|
echo "PRODUCTION=yes" > /home/opam/tezos/src/Makefile.local && \
|
|
opam config exec -- make -C tezos/src -j4 && \
|
|
opam config exec -- make -C tezos/test -j4 build
|