From a7d8fb1079b72d83ef203b0b2d950c4ef1edf4ee Mon Sep 17 00:00:00 2001 From: Fabien Date: Thu, 25 Jun 2026 16:32:16 +0200 Subject: [PATCH] Make the paybutton server run on ARM64 There is no point hardcoding the platform, it only prevents the app from working on ARM64 which is not desirable. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c0dbf130..241cc8a38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=linux/amd64 node:lts-alpine +FROM node:lts-alpine RUN apk add --no-cache python3 make g++ bash openssl SHELL ["/bin/bash", "-c"] USER node