From 4e34e5c77db39e6a14309c5729a401b128f1204c Mon Sep 17 00:00:00 2001 From: t3chn0m4g3 Date: Mon, 25 Feb 2019 15:28:54 +0000 Subject: [PATCH] cyberchef pin to alpine 3.8 --- docker/cyberchef/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/cyberchef/Dockerfile b/docker/cyberchef/Dockerfile index b030b4fc..becfb0e3 100644 --- a/docker/cyberchef/Dockerfile +++ b/docker/cyberchef/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine +FROM alpine:3.8 # Get and install dependencies & packages RUN apk -U --no-cache add \ @@ -12,7 +12,7 @@ RUN apk -U --no-cache add \ # Install CyberChef cd /root && \ - git clone https://github.com/gchq/cyberchef -b v8.20.0 --depth=1 && \ + git clone https://github.com/gchq/cyberchef --depth=1 && \ chown -R nobody:nobody cyberchef && \ cd cyberchef && \ npm install && \