From 1ad99f068060cff00217192944b9f69207b0d4fd Mon Sep 17 00:00:00 2001 From: milad <96006331+sg-milad@users.noreply.github.com> Date: Thu, 10 Apr 2025 11:19:47 +0000 Subject: [PATCH] fix: add NODE_OPTIONS to docker file --- sample-app/front-end/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sample-app/front-end/Dockerfile b/sample-app/front-end/Dockerfile index a71401e..464700d 100644 --- a/sample-app/front-end/Dockerfile +++ b/sample-app/front-end/Dockerfile @@ -17,6 +17,8 @@ ENV VUE_APP_SEARCH_API_NODE $VUE_APP_SEARCH_API_NODE ARG VUE_APP_SEARCH_API_PYTHON ENV VUE_APP_SEARCH_API_PYTHON $VUE_APP_SEARCH_API_PYTHON +ENV NODE_OPTIONS=--openssl-legacy-provider + # install project dependencies RUN npm install