Skip to content
Snippets Groups Projects
Commit 147c5500 authored by Jonas Eppelt's avatar Jonas Eppelt
Browse files

added python3.11

parent 148c9b2b
Branches
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ build_and_push:
stage: build_and_push
image: docker:latest
script:
- IMAGES=( "basis" "tp" "cuda_basis" "tp_geant" ); #"tp_herwig"
- IMAGES=( "basis" "tp" "python311" "cuda_basis" "basis_jupytermachine" ); #"tp_herwig" "tp_geant"
- docker login -u jeppelt -p $DOCKER_TOKEN;
- |
for image in "${IMAGES[@]}"; do
......@@ -27,7 +27,7 @@ create_jupytermachine_version:
stage: create_jupytermachine_version
image: docker:latest
script:
- IMAGES=( "basis" "tp" "cuda_basis" "tp_geant" ) #"tp_herwig"
- IMAGES=( "tp" "python311" "cuda_basis" ) #"tp_herwig" "tp_geant"
- docker login -u jeppelt -p $DOCKER_TOKEN
- cd basis_jupytermachine
- |
......
FROM jupyter/base-notebook:python-3.11
LABEL maintainer "Eppelt, Jonas jonas.eppelt@kit.edu"
USER root
### run apt-get installs for Latex for notebook conversion
RUN apt-get update -y && apt-get upgrade -y && \
apt-get install -y nano vim pandoc dvipng git texlive-xetex texlive texlive-lang-german texlive-latex-extra \
dpkg-dev cmake g++ gcc binutils libx11-dev libxpm-dev libxft-dev libxext-dev libssl-dev --upgrade && \
apt-get clean && rm -rf /var/lib/apt/lists/*
### installing pip packages
RUN pip install numpy seaborn scipy matplotlib uncertainties pyunfold PhyPraKit pandas\
kafe2 pydot graphviz scikit-learn jupytext nbgitpuller --upgrade --no-cache-dir
RUN pip install iminuit --no-cache
### set Workdir
WORKDIR /home
### set User back
USER $NB_USER
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment