Revision f06ac1d805474cd2890e4af8e95b2a2b295e7184 authored by Joost van Griethuysen on 23 June 2020, 16:26:33 UTC, committed by GitHub on 23 June 2020, 16:26:33 UTC
Force emptyGrayLevels datatype to int
2 parent s e100f1d + dc3068c
Raw File
build
#!/bin/bash

# $IMAGE_NAME var is injected into the build so the tag is correct.

echo "Build hook running"
docker build --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
             --build-arg GIT_REF=`git rev-parse --short HEAD` \
             -t $IMAGE_NAME .
back to top