Explorar el Código

Delete build-docker.sh

It depended on the remove outdated Docker file so it is also removed. See the docker dir for more up2date docker build files
Mészáros Mihály hace 5 años
padre
commit
ae2ee1f4e4
Se han modificado 1 ficheros con 0 adiciones y 15 borrados
  1. 0 15
      build-docker.sh

+ 0 - 15
build-docker.sh

@@ -1,15 +0,0 @@
-#!/bin/bash
-set -o xtrace
-
-dir=`pwd`
-echo "$dir"
-
-build_image=coturnbuild
-dockerargs="--privileged -v ${dir}:/root/coturn -w /root/coturn"
-container_env=' -e "INSIDECONTAINER=-incontainer=true"'
-docker="docker run --rm -it ${dockerargs} ${container_env} ${build_image}"
-
-docker build -f Dockerfile.build -t ${build_image} .
-
-${docker} bash -c "./configure && make"
-