Skip to content
Snippets Groups Projects

Added a CI/CD build Dockerfile for jupyterlab to create an image with the...

Closed Markus Scheidgen requested to merge add-nomad-lab-to-jupyterlab into develop
6 files
+ 69
43
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 8
0
# Create a build stage from the current nomad dev_python image to copy the nomad-lab
# distribution
FROM gitlab-registry.mpcdf.mpg.de/nomad-lab/nomad-fair/dev_python:develop AS dev_python
FROM jupyter/datascience-notebook
COPY --from=dev_python /app/dist/nomad-lab-*.tar.gz .
RUN pip install nomad-lab-*.tar.gz
Loading