bump cyberchef to latest release

This commit is contained in:
t3chn0m4g3 2021-02-12 17:09:44 +00:00
parent 039f3c115a
commit f2c48d7efc

View file

@ -1,20 +1,17 @@
FROM alpine:3.10 FROM alpine:3.10
# #
# Get and install dependencies & packages # Get and install dependencies & packages
RUN sed -i 's/dl-cdn/dl-2/g' /etc/apk/repositories && \ RUN apk -U --no-cache add \
apk -U --no-cache add \
curl \ curl \
git \ git \
npm \ npm \
nodejs && \ nodejs && \
npm install -g grunt-cli && \
npm install -g http-server && \
npm install npm@latest -g && \ npm install npm@latest -g && \
npm install -g grunt-cli http-server && \
# #
# Install CyberChef # Install CyberChef
cd /root && \ cd /root && \
git clone https://github.com/gchq/cyberchef -b v9.21.0 && \ git clone https://github.com/gchq/cyberchef -b v9.27.0 && \
chown -R nobody:nobody cyberchef && \
cd cyberchef && \ cd cyberchef && \
npm install && \ npm install && \
grunt prod && \ grunt prod && \