https://github.com/Radiomics/pyradiomics
Raw File
Tip revision: 110aa14b6840a3e07a3ff9d1c810dfc0c1c77d60 authored by Joost van Griethuysen on 13 June 2022, 14:39:14 UTC
BUG: Fix error in passing PyPi credentials
Tip revision: 110aa14
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