https://github.com/buck06191/WeBCMD
Raw File
Tip revision: 174c7a37dc04234035f6f7243a21f1998611339a authored by Josh Buckland on 04 September 2019, 10:51:41 UTC
csv_debug branch deployedto production
Tip revision: 174c7a3
dockerfile_creation.sh
#!/bin/bash
# Script to create a Dockerfile that will ensure the Gitclone command runs every time

DATE=`date`
sed -e "s/\${{date}}/$DATE/"  dockerfile.template > Dockerfile
back to top