From c299cd626ee0079d184c98dc65262085f545fa78 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 2 Feb 2025 23:03:05 +0100 Subject: [PATCH] Workflow: Update formula11 dockerfile --- formula11.dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/formula11.dockerfile b/formula11.dockerfile index 1cc686e..1eca738 100644 --- a/formula11.dockerfile +++ b/formula11.dockerfile @@ -6,9 +6,6 @@ COPY package*.json ./ RUN npm ci -# Sharp requires extra shit -RUN npm install --os=linux --libc=musl --cpu=x64 --include=optional sharp - COPY . . RUN npm run build @@ -19,8 +16,7 @@ FROM node:23-alpine WORKDIR /app COPY --from=builder /app/build build/ -# If all deps are devDependencies, this should theoretically not be required -# COPY --from=builder /app/node_modules node_modules/ +COPY --from=builder /app/node_modules node_modules/ COPY package.json . EXPOSE 5173