Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
course-container
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EnJoY
course-container
Commits
147c5500
Commit
147c5500
authored
1 year ago
by
Jonas Eppelt
Browse files
Options
Downloads
Patches
Plain Diff
added python3.11
parent
148c9b2b
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
python311/Dockerfile
+24
-0
24 additions, 0 deletions
python311/Dockerfile
with
26 additions
and
2 deletions
.gitlab-ci.yml
+
2
−
2
View file @
147c5500
...
...
@@ -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
-
|
...
...
This diff is collapsed.
Click to expand it.
python311/Dockerfile
0 → 100644
+
24
−
0
View file @
147c5500
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment