5 lines
133 B
Bash
Executable file
5 lines
133 B
Bash
Executable file
#!/bin/bash
|
|
REPO_ROOT=`git rev-parse --show-toplevel`
|
|
pushd $REPO_ROOT
|
|
docker build -f docker/ci/Dockerfile -t nano-ci:latest .
|
|
popd
|