-
Notifications
You must be signed in to change notification settings - Fork 31
/
build.sh
executable file
·30 lines (23 loc) · 888 Bytes
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
echo "********************************************************************************"
echo ""
echo "Setting up the host."
echo ""
echo "********************************************************************************"
cd setup_host
./basics.sh
./install-nvidia-drivers.sh
./install-nvidia-docker2.sh
./add_xhost.sh
cd ..
echo "********************************************************************************"
echo ""
echo "Creating the docker container."
echo ""
echo "********************************************************************************"
docker build -t autonomous_sys_build autonomous_sys_build
echo "********************************************************************************"
echo ""
echo "All done. Now you can run the container by running run.sh."
echo ""
echo "********************************************************************************"