From ec383458e73857a4e1af21cc3011126fe7fcc9dc Mon Sep 17 00:00:00 2001 From: Hamish Farrant Date: Tue, 15 Oct 2024 14:59:43 +1100 Subject: [PATCH] BC-27536: gcompat is required for the build process (on arm macs) for the build to produce an artifact that can serve requests (I had it working initially, but removed it because removing it didn't seem to stop the built docker image from starting, unfortunately it started just fine, but didn't respond to requests) Signed-off-by: Hamish Farrant --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 59844a5..447d3e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM ruby:3.1.2-alpine AS builder -RUN apk add --no-cache nodejs npm bash curl musl-dev libc-dev make gcc sqlite-dev +RUN apk add --no-cache nodejs npm bash curl musl-dev libc-dev make gcc sqlite-dev gcompat ENV APP_DIR=/app RUN mkdir ${APP_DIR}