You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- #!/bin/sh
- set -e
- set -o xtrace
-
- IMAGE_NAME=hack-the-game-v002
-
- # clean old images
- OLD_IMAGES=$(docker images $IMAGE_NAME -q --no-trunc)
- if [ -n "${OLD_IMAGES}" ]; then
- docker rmi -f ${OLD_IMAGES};
- fi
-
- #Build Images
- docker build . -t $IMAGE_NAME
|