Add a reference to a docker image that contains an "official" toolchain for building Scylla. In addition, add a script that allows easy usage of the image, and some documentation. Message-Id: <20181202120829.21218-1-avi@scylladb.com>
4 lines
114 B
Bash
Executable File
4 lines
114 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker run -it --rm -u "$(id -u):$(id -g)" -v "$PWD:$PWD" -w "$PWD" "$(<tools/toolchain/image)" "$@"
|