mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-08-22 05:56:24 +00:00
e4492a299e
(https://docs.docker.com/engine/reference/builder/#/maintainer-deprecated) Signed-off-by: Gong Sophia <sophia.gong@intel.com>
14 lines
248 B
Docker
14 lines
248 B
Docker
FROM clearlinux
|
|
|
|
ARG swupd_args
|
|
|
|
RUN swupd update --no-boot-update $swupd_args \
|
|
&& swupd bundle-add machine-learning-web-ui \
|
|
&& rm -rf /var/lib/swupd/*
|
|
|
|
EXPOSE 8888
|
|
|
|
CMD ["jupyter-notebook"]
|
|
|
|
COPY jupyter_notebook_config.py /etc/jupyter/
|