https://github.com/buck06191/WeBCMD
Revision 4c77751158d4c2c18d20475980be03a33feb2c6a authored by Josh Buckland on 29 August 2019, 10:50:37 UTC, committed by Josh Buckland on 29 August 2019, 10:50:37 UTC
1 parent fe164da
Raw File
Tip revision: 4c77751158d4c2c18d20475980be03a33feb2c6a authored by Josh Buckland on 29 August 2019, 10:50:37 UTC
ignore eb deploy script
Tip revision: 4c77751
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