Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 802 Bytes

DOCKERBUILD.md

File metadata and controls

32 lines (23 loc) · 802 Bytes

Docker Build 🛠️

The spectatord project also supports a platform-agnostic build. The only prerequisite is the installation of Docker. Once Docker is installed, you can build the project by running the following commands from the root directory of the project.

Linux & Mac 🐧

Warning:
  • Do not prepend the command with sudo on Mac
  • Start Docker before opening terminal on Mac
sudo docker build -t spectatord-image -f Dockerfiles/Ubuntu.Dockerfile .
sudo docker run -it spectatord-image
./build.sh

Windows

Warning:
  • Start Docker before opening Powershell
docker build -t spectatord-image -f Dockerfiles/Ubuntu.Dockerfile .
docker run -it spectatord-image
apt-get install dos2unix
dos2unix build.sh
./build.sh