diff --git a/Dockerfile b/Dockerfile index 9e5150b3..32f09239 100644 --- a/Dockerfile +++ b/Dockerfile @@ -72,7 +72,9 @@ RUN apk add --update --no-cache \ py3-setuptools \ readline-dev \ ruby ruby-dev ruby-bundler ruby-rdoc \ - gnupg + gnupg \ + R \ + libc-dev libxml2-dev ######################################## # Copy dependencies files to container # diff --git a/lib/buildFileList.sh b/lib/buildFileList.sh index e565868d..9123adc8 100755 --- a/lib/buildFileList.sh +++ b/lib/buildFileList.sh @@ -355,6 +355,21 @@ function BuildFileList() { # Set the READ_ONLY_CHANGE_FLAG since this could be exec # ########################################################## READ_ONLY_CHANGE_FLAG=1 + ######################## + # Get the Golang files # + ######################## + elif [ "${FILE_TYPE}" == "R" ]; then + ################################ + # Append the file to the array # + ################################ + FILE_ARRAY_R+=("${FILE}") + ########################################################## + # Set the READ_ONLY_CHANGE_FLAG since this could be exec # + ########################################################## + READ_ONLY_CHANGE_FLAG=1 + ########################### + # Get the Terraform files # + ########################### ########################### # Get the Terraform files # ###########################