From 0236562cabc1b22733910744d8c6623049de33a5 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Wed, 26 Feb 2025 18:34:04 +0100 Subject: [PATCH] fix(docker): update base image to amd64 version Updates the Dockerfile to use the amd64 variant of the Node.js base image. This change ensures compatibility with the target architecture for improved performance and stability. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4da80e0..722d402 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22.14.0@sha256:2094ac60fa9f3df66c87f93e3ec4ab1e296f0a4d2ba3eed3f2d367529a3118b1 +FROM amd64/node:22.14.0@sha256:32ad68e28d3eb06c388fc9d87f2143c2df157d4e99ade9024189513238c0b838 ENV PATH=${PATH}:/root/.local/bin