From a8be189229cae87c28c0f59158884301cf2cf024 Mon Sep 17 00:00:00 2001 From: zramsay Date: Thu, 1 May 2025 07:51:35 -0400 Subject: [PATCH] use local laconic-so for testing --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0547004..583be00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,12 @@ RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg - apt update && apt install -y nodejs # laconic-so -RUN curl -LO https://git.vdb.to/cerc-io/stack-orchestrator/releases/download/latest/laconic-so && \ - chmod +x ./laconic-so && \ - mv ./laconic-so /usr/bin/laconic-so +#RUN curl -LO https://git.vdb.to/cerc-io/stack-orchestrator/releases/download/latest/laconic-so && \ +# chmod +x ./laconic-so && \ +# mv ./laconic-so /usr/bin/laconic-so + +# for testing, put so in the root of this repo prior to running `build-containers` +COPY laconic-so /usr/bin/laconic-so # laconic-registry-cli RUN npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/ && \