intial release

This commit is contained in:
2026-05-31 11:52:44 +02:00
commit ddc78dd5ba
5 changed files with 476 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM maven:3.9-eclipse-temurin-21
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl ca-certificates git jq \
&& curl -sL "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64" \
-o /usr/local/bin/yq && chmod +x /usr/local/bin/yq \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*