Skip to content

Commit

Permalink
Update Dockerfile_Jupiter (#1333)
Browse files Browse the repository at this point in the history
  • Loading branch information
DRMPN authored Sep 8, 2024
1 parent 3998d22 commit 6cfefca
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docker/jupiter/Dockerfile_Jupiter
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@ FROM jupyter/minimal-notebook:python-3.10.10

USER root

# Installing required dependencies, including pkg-config and HDF5
RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential \
cmake \
ffmpeg \
libsm6 \
libxext6 && \
libxext6 \
pkg-config \
libhdf5-dev && \
rm -rf /var/lib/apt/lists/*

# Installing pip packages, including fedot and additional dependencies
RUN pip install --no-cache-dir \
fedot \
fedot[extra]
fedot[extra]

0 comments on commit 6cfefca

Please sign in to comment.