1
0

rebuild 386 B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. set -e
  3. if [ "$1" = "--continue" ]; then
  4. OPTS=""
  5. else
  6. OPTS="--no-cache"
  7. fi
  8. docker build ${OPTS} -t youcompleteme/ycm-vim-py2:test \
  9. --build-arg YCM_VIM_PYTHON=python \
  10. image/
  11. docker build ${OPTS} -t youcompleteme/ycm-vim-py3:test \
  12. --build-arg YCM_VIM_PYTHON=python3 \
  13. image/