From bce251b35b3d6cecf0c6d409eb9060dccd8d1c35 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 28 Feb 2025 11:17:07 +0000 Subject: [PATCH 1/2] Update node engines, 23.x is broken too --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c40c2a74..b071c094 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "type": "module", "files": [], "engines": { - "node": ">=18.0.0 <=22.13.1 || >22" + "node": ">=18.0.0 <=22.13.1" }, "scripts": { "i18n": "matrix-gen-i18n && yarn i18n:sort && yarn i18n:lint", From ff7f53fb35675694b3961a77c97557765d4cedd4 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 28 Feb 2025 11:39:31 +0000 Subject: [PATCH 2/2] Use modern Dockerfile env format to silence warnings (#2171) --- dockerbuild/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerbuild/Dockerfile b/dockerbuild/Dockerfile index 0c4c0b3c..ecd61fc5 100644 --- a/dockerbuild/Dockerfile +++ b/dockerbuild/Dockerfile @@ -2,7 +2,7 @@ # with broader compatibility, down to Debian bullseye & Ubuntu focal. FROM rust:bullseye -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN curl --proto "=https" -L https://yarnpkg.com/latest.tar.gz | tar xvz && mv yarn-* /yarn && ln -s /yarn/bin/yarn /usr/bin/yarn RUN apt-get -qq update && apt-get -y -qq dist-upgrade && \ @@ -16,8 +16,8 @@ RUN apt-get -qq update && apt-get -y -qq dist-upgrade && \ apt-get purge -y --auto-remove && rm -rf /var/lib/apt/lists/* RUN ln -s /usr/bin/python3 /usr/bin/python & ln -s /usr/bin/pip3 /usr/bin/pip -ENV DEBUG_COLORS true -ENV FORCE_COLOR true +ENV DEBUG_COLORS=true +ENV FORCE_COLOR=true WORKDIR /project