diff --git a/docker/Dockerfile b/docker/Dockerfile index 208c94b..0831538 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -27,7 +27,7 @@ WORKDIR /agent # when the scheduled Trivy scan flags OS-package CVEs whose fixes are already # in the archive — the cache is just serving a stale layer. Leaves the rest of # the build (Go, npm, snyk-broker clone) hitting cache as normal. -ARG APT_CACHE_BUST=2026-05-19 +ARG APT_CACHE_BUST=2026-05-27 RUN echo "apt cache bust: $APT_CACHE_BUST" \ && apt-get update && apt-get upgrade -y && apt-get install -y \ protobuf-compiler git python3 python3-venv wget build-essential openssl jq @@ -35,7 +35,7 @@ RUN echo "apt cache bust: $APT_CACHE_BUST" \ # Install NodeJS and Snyk Broker ENV NODE_VERSION=20 -ARG SNYK_BROKER_VERSION=v1.0.14-axon +ARG SNYK_BROKER_VERSION=v1.0.15-axon RUN wget -q -O - https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - && apt-get install -y nodejs RUN npm install --global npm@latest typescript@4.9.3 RUN git clone https://github.com/cortexapps/snyk-broker.git /tmp/snyk-broker && \