docker-cyberchef/Dockerfile

22 lines
745 B
Text
Raw Normal View History

2025-04-22 22:05:02 +00:00
FROM node:20.19.1-bullseye@sha256:5fb777409dffa9cff4f1ccfff3fb609ad8d1a212f499cd360b6e84f04a1fbb77 as build
2020-11-29 16:06:13 +01:00
# renovate: datasource=github-tags depName=gchq/CyberChef versioning=semver
ENV CYBERCHEF_VERSION v10.19.4
2021-04-19 16:36:44 +02:00
USER node
2021-04-19 17:11:37 +02:00
RUN set -ex; \
mkdir /tmp/cyberchef;
2020-11-29 16:06:13 +01:00
WORKDIR /tmp/cyberchef
2021-04-19 17:11:37 +02:00
RUN set -ex; \
git clone --branch $CYBERCHEF_VERSION https://github.com/gchq/CyberChef.git .; \
npm install; \
npx grunt prod; \
rm /tmp/cyberchef/build/prod/BundleAnalyzerReport.html /tmp/cyberchef/build/prod/CyberChef_$CYBERCHEF_VERSION.zip;
Update nginxinc/nginx-unprivileged Docker tag to v1.28.0 (#392) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [nginxinc/nginx-unprivileged](https://github.com/nginx/docker-nginx-unprivileged) | final | minor | `1.26.3` -> `1.28.0` | --- ### Release Notes <details> <summary>nginx/docker-nginx-unprivileged (nginxinc/nginx-unprivileged)</summary> ### [`v1.27.4`](https://github.com/nginx/docker-nginx-unprivileged/releases/tag/1.27.4) [Compare Source](https://github.com/nginx/docker-nginx-unprivileged/compare/1.27.3...1.27.4) NGINX 1.27.4 (mainline) ### [`v1.27.3`](https://github.com/nginx/docker-nginx-unprivileged/releases/tag/1.27.3) [Compare Source](https://github.com/nginx/docker-nginx-unprivileged/compare/1.27.2...1.27.3) NGINX 1.27.3 (mainline) ### [`v1.27.2`](https://github.com/nginx/docker-nginx-unprivileged/releases/tag/1.27.2) [Compare Source](https://github.com/nginx/docker-nginx-unprivileged/compare/1.27.1...1.27.2) NGINX 1.27.2 (mainline) ### [`v1.27.1`](https://github.com/nginx/docker-nginx-unprivileged/releases/tag/1.27.1) [Compare Source](https://github.com/nginx/docker-nginx-unprivileged/compare/1.27.0...1.27.1) NGINX 1.27.1 (mainline) ### [`v1.27.0`](https://github.com/nginx/docker-nginx-unprivileged/releases/tag/1.27.0) [Compare Source](https://github.com/nginx/docker-nginx-unprivileged/compare/1.26.3...1.27.0) NGINX 1.27.0 (mainline) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNTMuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI1My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://git.walbeck.it/mwalbeck/docker-cyberchef/pulls/392 Co-authored-by: renovate-bot <bot@walbeck.it> Co-committed-by: renovate-bot <bot@walbeck.it>
2025-04-26 11:19:06 +00:00
FROM nginxinc/nginx-unprivileged:1.28.0@sha256:3e5f030818c3782a35b6f621458a21f3e526a35267b2b4505d225684d5eac7c4
COPY --from=build /tmp/cyberchef/build/prod /usr/share/nginx/html
EXPOSE 8080