mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-13 21:13:01 +00:00
12 lines
206 B
Bash
12 lines
206 B
Bash
#!/bin/bash
|
|
set -ex
|
|
|
|
stable=0.7
|
|
|
|
for V in master 0.7; do
|
|
docker build --build-arg JUPYTERHUB_VERSION=$V -t $DOCKER_REPO:$V .
|
|
done
|
|
|
|
echo "tagging $IMAGE_NAME"
|
|
docker tag $DOCKER_REPO:$stable $IMAGE_NAME
|