From 53f78614a18ea15d08bc0cb95ed218ab6ee4f292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laurent?= <francois.laurent@posteo.net> Date: Thu, 25 Jul 2024 17:54:16 +0200 Subject: [PATCH] fix: first working Docker image --- recipes/Dockerfile.pasteurjanelia | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes/Dockerfile.pasteurjanelia b/recipes/Dockerfile.pasteurjanelia index 43f0edb..c346374 100644 --- a/recipes/Dockerfile.pasteurjanelia +++ b/recipes/Dockerfile.pasteurjanelia @@ -8,7 +8,7 @@ ENV PIP_DISABLE_PIP_VERSION_CHECK=1 \ POETRY_VERSION=1.8.3 RUN apt-get update \ - && apt-get install --no-install-recommends -y wget \ + && apt-get install --no-install-recommends -y make wget unzip \ && if ! command -v poetry; then \ apt-get install --no-install-recommends -y python3-dev python3-pip \ && pip install "poetry==$POETRY_VERSION"; \ @@ -25,5 +25,7 @@ RUN cd $PROJECT_DIR \ && git clone --depth 1 --no-tags --single-branch -b $BACKEND_BRANCH https://gitlab.pasteur.fr/nyx/PasteurJanelia-adapter PasteurJanelia \ && cd PasteurJanelia \ && make package \ + && rm -rf bin/matlab/2023b/bin/glnxa64/matlab_startup_plugins/matlab_graphics_ui \ + && rm -rf bin/matlab/2023b/bin/glnxa64/matlab_startup_plugins/foundation/platform/pf_matlab_integ \ && rm -rf .git ~/.cache -- GitLab