mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-08-28 13:25:43 +00:00
d2e79f58f6
Add an image for the machine-learning-web-ui bundle to give easy access to a ready to run jupyter based environment.
16 lines
257 B
Docker
16 lines
257 B
Docker
FROM clearlinux
|
|
MAINTAINER william.douglas@intel.com
|
|
|
|
ARG swupd_args
|
|
|
|
RUN swupd update $swupd_args
|
|
RUN swupd bundle-add machine-learning-web-ui
|
|
|
|
RUN rm -rf /var/lib/swupd
|
|
|
|
EXPOSE 8888
|
|
|
|
CMD ["jupyter-notebook"]
|
|
|
|
COPY jupyter_notebook_config.py /etc/jupyter/
|