fix(ci-runner): Added an adr template
CI / lint-and-format (push) Successful in 34s
CI / changeset-check (push) Successful in 30s
CI / unit-tests (push) Successful in 36s
CI / component-tests (push) Failing after 56s

Developers can use template for creating new adrs
This commit is contained in:
2026-08-02 17:57:23 +02:00
parent 5792a1581b
commit 262db8911f
+12 -9
View File
@@ -1,15 +1,18 @@
FROM node:22-bullseye FROM node:22-bullseye
# Install Docker CLI + Compose V2 plugin from Docker's official apt repo
# (Debian's own docker.io package ships an outdated Docker version and
# does not include the compose plugin at all).
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y docker.io curl \ && apt-get install -y ca-certificates curl gnupg \
&& install -m 0755 -d /etc/apt/keyrings \
&& curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc \
&& chmod a+r /etc/apt/keyrings/docker.asc \
&& echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian bullseye stable" \
| tee /etc/apt/sources.list.d/docker.list > /dev/null \
&& apt-get update \
&& apt-get install -y docker-ce-cli docker-compose-plugin \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN corepack enable RUN corepack enable
# Install Docker Compose V2 as a CLI plugin (docker.io package does not
# include it, and the npm "docker-compose" package is an unrelated
# legacy wrapper that does not provide the `docker compose` subcommand).
RUN mkdir -p /usr/libexec/docker/cli-plugins \
&& curl -SL "https://github.com/docker/compose/releases/latest/download/docker-compose-linux-x86_64" \
-o /usr/libexec/docker/cli-plugins/docker-compose \
&& chmod +x /usr/libexec/docker/cli-plugins/docker-compose