From e6710bbbc61a494dc545d0a41b9b2827f2b5d796 Mon Sep 17 00:00:00 2001 From: kpine Date: Fri, 1 Dec 2023 23:32:37 -0800 Subject: [PATCH] chore(docker): shell syntax error (#3462) --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index e3248a38cd..e56dccc351 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -25,7 +25,7 @@ RUN \ COPY . . # if node_modules does not exist, install deps, if dist is missing, install also dev deps -RUN [ -d 'node_modules' ] && echo "Skipping install" || npm install $([ -d 'dist'] && echo '--omit=dev' || echo '') +RUN [ -d 'node_modules' ] && echo "Skipping install" || npm install $([ -d 'dist' ] && echo '--omit=dev' || echo '') # Fix issue with serialport bindings #2349 RUN npm_config_build_from_source=true npm rebuild @serialport/bindings-cpp