From 0bcf7d2ff875cbcbbb9df0a1b48f90284f4e3b98 Mon Sep 17 00:00:00 2001 From: David Linder <19273958+linderd@users.noreply.github.com> Date: Thu, 24 Oct 2024 21:26:19 +0200 Subject: [PATCH] Fix Dockerfile: install built package with pip --- docker/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 65feee0..1ff014e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -44,6 +44,9 @@ RUN git clone https://github.com/openfheorg/openfhe-python.git \ && make -j$(nproc) \ && make install +# Install OpenFHE-package in Python +RUN pip install -e openfhe-python + # Expose the port JupyterLab will listen on EXPOSE 8888 @@ -51,4 +54,4 @@ EXPOSE 8888 WORKDIR /workspace # Start JupyterLab without token authentication -CMD ["jupyter-lab", "--ip=0.0.0.0", "--no-browser", "--allow-root", "--NotebookApp.token=''", "--NotebookApp.allow_origin='*'", "--NotebookApp.password=''", "--NotebookApp.password_required=False"] \ No newline at end of file +CMD ["jupyter-lab", "--ip=0.0.0.0", "--no-browser", "--allow-root", "--NotebookApp.token=''", "--NotebookApp.allow_origin='*'", "--NotebookApp.password=''", "--NotebookApp.password_required=False"]