Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

14 rader
341 B

  1. #!/bin/bash
  2. script_dir="$( dirname "${0}" )"
  3. IMAGE_LATEST_TAG="latest"
  4. IMAGE_VERSION_TAG=`git tag -l --sort=-creatordate | head -n 1 | sed "s/v//g"`
  5. sudo docker build \
  6. --no-cache \
  7. -t getpinry/pinry:${IMAGE_VERSION_TAG} \
  8. -t getpinry/pinry:${IMAGE_LATEST_TAG} \
  9. "${script_dir}/../" \
  10. -f "${script_dir}/../Dockerfile.autobuild"