Install gcc to compile NIFs during CodeDeploy

This commit is contained in:
Luke Imhoff 2018-06-21 14:42:59 -05:00
parent 52df5aaaab
commit 7472e933ec
1 changed files with 4 additions and 0 deletions

View File

@ -184,6 +184,10 @@ if [ "$(has_db)" != "1" ]; then
-c "CREATE DATABASE $DB_NAME;" >"$LOG"
fi
log "Installing gcc for NIF compilation during code deploy"
yum install -y --enablerepo=epel gcc >"$LOG"
log "Application environment is ready!"
log "Starting CodeDeploy agent.."