From a745a38df995fbed386e2e0b940bec0fa6859ded Mon Sep 17 00:00:00 2001 From: assignUser Date: Sat, 15 Aug 2020 22:53:08 +0000 Subject: [PATCH] add apks --- Dockerfile | 4 +++- lib/buildFileList.sh | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) 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 # ###########################