From f34d675dfa6248121f39bdc14c26ed0f40894a75 Mon Sep 17 00:00:00 2001 From: Nischal Sharma Date: Wed, 6 Sep 2023 20:25:34 +0530 Subject: [PATCH 1/2] fix for tessera not working in mac m1/m2 Signed-off-by: Nischal Sharma --- files/common/config/tessera/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/common/config/tessera/Dockerfile b/files/common/config/tessera/Dockerfile index cb95333..1a3f0d6 100644 --- a/files/common/config/tessera/Dockerfile +++ b/files/common/config/tessera/Dockerfile @@ -1,6 +1,6 @@ ARG TESSERA_VERSION=latest -FROM quorumengineering/tessera:${TESSERA_VERSION} +FROM --platform=amd64 quorumengineering/tessera:${TESSERA_VERSION} # develop uses a debain container, all releases use an alpine container - this allows both to be used for the quickstart # set the version in ../../.env From 8589256aac94cdadc2bc44362cea4e015be8b758 Mon Sep 17 00:00:00 2001 From: Nischal Sharma Date: Sun, 8 Oct 2023 19:28:04 +0530 Subject: [PATCH 2/2] Update Dockerfile --- files/common/config/tessera/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/common/config/tessera/Dockerfile b/files/common/config/tessera/Dockerfile index 1a3f0d6..3d7adb0 100644 --- a/files/common/config/tessera/Dockerfile +++ b/files/common/config/tessera/Dockerfile @@ -1,6 +1,6 @@ ARG TESSERA_VERSION=latest -FROM --platform=amd64 quorumengineering/tessera:${TESSERA_VERSION} +FROM --platform=linux/amd64 quorumengineering/tessera:${TESSERA_VERSION} # develop uses a debain container, all releases use an alpine container - this allows both to be used for the quickstart # set the version in ../../.env