Skip to content
Snippets Groups Projects
Commit 073c4c6b authored by Christian Winter's avatar Christian Winter
Browse files

working version of data-analysis-advanced container and fixed versions

parent 1bdb1021
No related branches found
No related tags found
No related merge requests found
ARG REGISTRY=quay.io
ARG OWNER=jupyter
ARG BASE_CONTAINER=$REGISTRY/$OWNER/tensorflow-notebook
ARG BASE_CONTAINER=$REGISTRY/$OWNER/tensorflow-notebook:notebook-7.2.2
FROM $BASE_CONTAINER
LABEL maintainer="Faculty of Physics, KIT"
......@@ -13,13 +13,13 @@ USER ${NB_UID}
# Install Python 3 packages
RUN mamba install --yes \
'ROOT' \
'uproot' \
'vector' \
'awkward' \
'lxml' \
'pytables' \
'requests-ftp' && \
'ROOT==6.32.2' \
'uproot==5.3.12' \
'vector==1.5.1' \
'awkward==2.6.7' \
'lxml==5.3.0' \
'pytables==3.10.1' \
'requests-ftp==0.3.1' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"
......
......@@ -11,3 +11,25 @@ Additionally the following packages are installed:
- pytables
- requests-ftp
## Lectures
The following lectures are using this docker images in their exercises:
- Moderne Methoden der Datenanalyse (MDMA)
- Teilchenphysik 1 (TP 1)
## Test the image
To test the image run
```bash
docker pull kitphysics/data-analysis-advanced:latest
```
to pull the image and
```bash
docker run -it -p 8888:8888 kitphysics/data-analysis-advanced:latest
```
to run it. Press on the link in the output to open JupyterLab in your browser.
ARG REGISTRY=quay.io
ARG OWNER=jupyter
ARG BASE_CONTAINER=$REGISTRY/$OWNER/scipy-notebook
ARG BASE_CONTAINER=$REGISTRY/$OWNER/scipy-notebook:notebook-7.2.2
FROM $BASE_CONTAINER
LABEL maintainer="Faculty of Physics, KIT"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment