From 1593d01936054e5633e4ca8c014f34d28d320813 Mon Sep 17 00:00:00 2001 From: Alex Varchuk Date: Wed, 16 Oct 2024 13:29:44 +0300 Subject: [PATCH] fix: docker build (#2607) --- config/docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/config/docker/Dockerfile b/config/docker/Dockerfile index 87398a85..b56daf4d 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