Release Toolbox v0.19.0

This commit is contained in:
2026-09-01 16:29:17 +02:00
parent ea5f76554a
commit 45dcaff659
16 changed files with 661 additions and 110 deletions
+26 -2
View File
@@ -2,8 +2,8 @@ ARG NGINX_IMAGE=nginxinc/nginx-unprivileged:1.31.3-alpine@sha256:18d67281256ded3
FROM ${NGINX_IMAGE} AS release
ARG TOOLBOX_RELEASE_VERSION=0.18.1
ARG TOOLBOX_RELEASE_SHA256=bd9f088bac80071cfafc934bc7fc04ffbfb1ada5ef417dbbe85bde878cb34f85
ARG TOOLBOX_RELEASE_VERSION=0.19.0
ARG TOOLBOX_RELEASE_SHA256=b6003d8b3eee8a13032527b014a381d832ba46108c35d0aee9e1cfa6a1b281e2
ARG TOOLBOX_RELEASE_BASE_URL=https://git.add-ideas.de/lotobo/toolbox-portal/releases/download
RUN set -eu; \
@@ -44,6 +44,30 @@ RUN set -eu; \
test -f /tmp/toolbox/apps/time/toolbox-app.json; \
test -f /tmp/toolbox/apps/text/toolbox-app.json; \
test -f /tmp/toolbox/apps/unicode/toolbox-app.json; \
test -f /tmp/toolbox/apps/flow/toolbox-app.json; \
test -f /tmp/toolbox/apps/subtitle/toolbox-app.json; \
test -f /tmp/toolbox/apps/midi/toolbox-app.json; \
test -f /tmp/toolbox/apps/3d/toolbox-app.json; \
test -f /tmp/toolbox/apps/query/toolbox-app.json; \
test -f /tmp/toolbox/apps/scan/toolbox-app.json; \
test -f /tmp/toolbox/apps/package/toolbox-app.json; \
test -f /tmp/toolbox/apps/label/toolbox-app.json; \
test -f /tmp/toolbox/apps/font/toolbox-app.json; \
test -f /tmp/toolbox/apps/fixture/toolbox-app.json; \
test -f /tmp/toolbox/apps/minimize/toolbox-app.json; \
test -f /tmp/toolbox/apps/format-lab/toolbox-app.json; \
test -f /tmp/toolbox/apps/repro/toolbox-app.json; \
test -f /tmp/toolbox/apps/schema/toolbox-app.json; \
test -f /tmp/toolbox/apps/log/toolbox-app.json; \
test -f /tmp/toolbox/apps/binary/toolbox-app.json; \
test -f /tmp/toolbox/apps/git/toolbox-app.json; \
test -f /tmp/toolbox/apps/api/toolbox-app.json; \
test -f /tmp/toolbox/apps/mail/toolbox-app.json; \
test -f /tmp/toolbox/apps/calendar/toolbox-app.json; \
test -f /tmp/toolbox/apps/contact/toolbox-app.json; \
test -f /tmp/toolbox/apps/diagram/toolbox-app.json; \
test -f /tmp/toolbox/apps/token/toolbox-app.json; \
test -f /tmp/toolbox/apps/device/toolbox-app.json; \
rm "/tmp/${archive}"
FROM ${NGINX_IMAGE}