From 6ab55e23d9b1dff7818cfa5bab1d1b4836a0ed4b Mon Sep 17 00:00:00 2001 From: Chris Sowley Date: Wed, 18 Jan 2023 17:01:43 -0500 Subject: [PATCH 1/3] install nodejs --- Dockerfile | 53 +++++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32bb783..4109150 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,32 +12,33 @@ RUN adduser --home ${CODEQL_HOME} ${USERNAME} && \ apt-get update && \ apt-get upgrade -y && \ apt-get install -y --no-install-recommends \ - software-properties-common \ - vim \ - curl \ - wget \ - git \ - build-essential \ - unzip \ - apt-transport-https \ - python3.8 \ - python3-venv \ - python3-pip \ - python3-setuptools \ - python3-dev \ - gnupg \ - g++ \ - make \ - gcc \ - apt-utils \ - rsync \ - file \ - dos2unix \ - gettext && \ - apt-get clean && \ - rm -f /usr/bin/python /usr/bin/pip && \ - ln -s /usr/bin/python3.8 /usr/bin/python && \ - ln -s /usr/bin/pip3 /usr/bin/pip + software-properties-common \ + nodejs \ + vim \ + curl \ + wget \ + git \ + build-essential \ + unzip \ + apt-transport-https \ + python3.8 \ + python3-venv \ + python3-pip \ + python3-setuptools \ + python3-dev \ + gnupg \ + g++ \ + make \ + gcc \ + apt-utils \ + rsync \ + file \ + dos2unix \ + gettext && \ + apt-get clean && \ + rm -f /usr/bin/python /usr/bin/pip && \ + ln -s /usr/bin/python3.8 /usr/bin/python && \ + ln -s /usr/bin/pip3 /usr/bin/pip # Install .NET Core and Java for tools/builds RUN cd /tmp && \ From ee6a0e117e12f190e9d5f62343f046d4e49a15dc Mon Sep 17 00:00:00 2001 From: Chris Sowley Date: Thu, 19 Jan 2023 11:26:10 -0500 Subject: [PATCH 2/3] remove references to moved codeql-go-repo --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4109150..e878645 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,8 +70,6 @@ RUN mkdir -p \ # get the latest codeql queries and record the HEAD RUN git clone --depth 1 https://github.com/github/codeql ${CODEQL_HOME}/codeql-repo && \ git --git-dir ${CODEQL_HOME}/codeql-repo/.git log --pretty=reference -1 > /opt/codeql/codeql-repo-last-commit -RUN git clone --depth 1 https://github.com/github/codeql-go ${CODEQL_HOME}/codeql-go-repo && \ - git --git-dir ${CODEQL_HOME}/codeql-go-repo/.git log --pretty=reference -1 > /opt/codeql/codeql-go-repo-last-commit RUN CODEQL_VERSION=$(cat /tmp/codeql_version) && \ wget -q https://github.com/github/codeql-cli-binaries/releases/download/${CODEQL_VERSION}/codeql-linux64.zip -O /tmp/codeql_linux.zip && \ @@ -82,7 +80,6 @@ ENV PATH="${CODEQL_HOME}/codeql:${PATH}" # Pre-compile our queries to save time later RUN codeql query compile --threads=0 ${CODEQL_HOME}/codeql-repo/*/ql/src/codeql-suites/*.qls --additional-packs=. -RUN codeql query compile --threads=0 ${CODEQL_HOME}/codeql-go-repo/ql/src/codeql-suites/*.qls --additional-packs=. ENV PYTHONIOENCODING=utf-8 From 229d06b4a47108d3387b838fb682eb3e3b93c3d6 Mon Sep 17 00:00:00 2001 From: Chris Sowley Date: Mon, 23 Jan 2023 10:32:56 -0500 Subject: [PATCH 3/3] remove go-repo directory --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e878645..6313e14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,7 +64,6 @@ RUN pip3 install --upgrade pip \ RUN python3 /usr/local/startup_scripts/get-latest-codeql-version.py > /tmp/codeql_version RUN mkdir -p \ ${CODEQL_HOME}/codeql-repo \ - ${CODEQL_HOME}/codeql-go-repo \ /opt/codeql # get the latest codeql queries and record the HEAD