diff --git a/docker/nginx/Dockerfile b/docker/nginx/Dockerfile index 5244ac49..ec772b15 100644 --- a/docker/nginx/Dockerfile +++ b/docker/nginx/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ diff --git a/docker/nginx/builder/cyberchef/Dockerfile b/docker/nginx/builder/cyberchef/Dockerfile index 74a7e2dd..b0539b8d 100644 --- a/docker/nginx/builder/cyberchef/Dockerfile +++ b/docker/nginx/builder/cyberchef/Dockerfile @@ -1,17 +1,18 @@ FROM node:17.9.0-alpine3.15 as builder # -# Prep and build Cyberchef -RUN apk -U --no-cache add git && \ +# Prep and build Cyberchef +ENV CY_VER=v9.38.0 +RUN apk -U --no-cache add build-base git python3 && \ chown -R node:node /srv && \ npm install -g grunt-cli WORKDIR /srv USER node -RUN git clone https://github.com/gchq/cyberchef -b v9.37.1 . && \ +RUN git clone https://github.com/gchq/cyberchef -b $CY_VER . && \ NODE_OPTIONS=--max_old_space_size=2048 && \ npm install && \ grunt prod && \ cd build/prod && \ - rm CyberChef_v9.37.1.zip && \ + rm CyberChef_$CY_VER.zip && \ tar cvfz cyberchef.tgz * # FROM scratch AS exporter diff --git a/docker/nginx/dist/html/cyberchef/cyberchef.tgz b/docker/nginx/dist/html/cyberchef/cyberchef.tgz index 48ee2949..0d76737f 100644 Binary files a/docker/nginx/dist/html/cyberchef/cyberchef.tgz and b/docker/nginx/dist/html/cyberchef/cyberchef.tgz differ diff --git a/docker/nginx/dist/html/esvue/esvue.tgz b/docker/nginx/dist/html/esvue/esvue.tgz index 1bdedf20..a6848c12 100644 Binary files a/docker/nginx/dist/html/esvue/esvue.tgz and b/docker/nginx/dist/html/esvue/esvue.tgz differ diff --git a/docker/spiderfoot/Dockerfile b/docker/spiderfoot/Dockerfile index 3d56220e..0a6376b1 100644 --- a/docker/spiderfoot/Dockerfile +++ b/docker/spiderfoot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.16 # # Include dist COPY dist/ /root/dist/ @@ -87,4 +87,4 @@ HEALTHCHECK --retries=10 CMD curl -s -XGET 'http://127.0.0.1:8080/spiderfoot/' # Set user, workdir and start spiderfoot USER spiderfoot:spiderfoot WORKDIR /home/spiderfoot -CMD echo -n >> /home/spiderfoot/.spiderfoot/spiderfoot.db && exec /usr/bin/python3.9 sf.py -l 0.0.0.0:8080 +CMD echo -n >> /home/spiderfoot/.spiderfoot/spiderfoot.db && exec /usr/bin/python3 sf.py -l 0.0.0.0:8080