From cba5952d8f469389fd7ef53858f31f498e901e19 Mon Sep 17 00:00:00 2001 From: Corey Quinn Date: Tue, 23 Jan 2024 10:50:54 -0800 Subject: [PATCH] fix(ci): get arm build top work corerctly with sharp --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 871de49..2e84dd2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY src/ /app/src COPY scripts/ /app/scripts COPY package.json package-lock.json tsconfig.json .eslintrc.json /app/ -RUN npm ci --ignore-scripts && npm rebuild --platform=linux --arch=x64 --libc=musl sharp && npm run build --ignore-scripts +RUN npm ci --ignore-scripts && npm rebuild --platform=linux --libc=musl sharp && npm run build --ignore-scripts RUN echo "" > .env