blob: 30bd3dc70e47373059f9d0551aac74e1f7629fc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
# Builds and pushes SNAPSHOT versions of Portal images
# be verbose
set -x
TIMESTAMP=$(date +%C%y%m%dT%H%M%S)
export VERSION="1.3.0-SNAPSHOT-${TIMESTAMP}"
export LATEST="latest"
exec ./os_docker_base.sh
|