build_docker.sh 160 B

1234567
  1. #!/bin/bash
  2. if [ $1 == "--no-cache" ]; then
  3. docker build --no-cache -t kevhnmay94/face_recognition .
  4. else
  5. docker build -t kevhnmay94/face_recognition .
  6. fi