From faa54b025bfa7b823f7f81c64bcc8cfd1d79ce4b Mon Sep 17 00:00:00 2001 From: Tristan Pinsonneault-Marotte Date: Wed, 9 Apr 2025 17:58:01 -0700 Subject: [PATCH] Install sodetlib in the pysmurf_controller docker. --- docker/pysmurf_controller/Dockerfile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docker/pysmurf_controller/Dockerfile b/docker/pysmurf_controller/Dockerfile index cdd887a97..d4fb3ebe3 100644 --- a/docker/pysmurf_controller/Dockerfile +++ b/docker/pysmurf_controller/Dockerfile @@ -1,4 +1,13 @@ -FROM simonsobs/sodetlib:v0.5.2-20-gdd529b5 +FROM simonsobs/so_smurf_base:v0.0.4-1-g74a18de + +################################################################# +# sodetlib Install +################################################################# +WORKDIR / +RUN git clone --branch v0.5.3 --depth 1 https://github.com/simonsobs/sodetlib.git +WORKDIR /sodetlib +RUN pip3 install -e . +RUN pip3 install -r requirements.txt ENV OCS_CONFIG_DIR /config @@ -7,6 +16,6 @@ ENV PYTHONUNBUFFERED=1 # SOCS installation RUN python3 -m pip install git+https://github.com/simonsobs/socs.git@main -RUN pip3 install dumb-init +RUN python3 -m pip install dumb-init ENTRYPOINT ["dumb-init", "ocs-agent-cli"]