From a69ebe53e972b1f40c727fb15247aaf7a2399951 Mon Sep 17 00:00:00 2001 From: Alex Varchuk Date: Wed, 16 Oct 2024 12:07:59 +0200 Subject: [PATCH] fix: docker build --- config/docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/config/docker/Dockerfile b/config/docker/Dockerfile index 87398a850..b56daf4d6 100644 --- a/config/docker/Dockerfile +++ b/config/docker/Dockerfile @@ -13,6 +13,7 @@ RUN apk update && apk add --no-cache git WORKDIR /build COPY package.json package-lock.json /build/ RUN npm ci --no-optional --ignore-scripts +RUN npm explore esbuild -- npm run postinstall # copy only required for the build files COPY src /build/src