mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-05-14 02:43:33 +00:00
Squashing all RUN commands together to ensure they create a single docker layer resulting in a smaller overall image size. Signed-off-by: Rusty Lynch <rusty.lynch@intel.com>
15 lines
285 B
Docker
15 lines
285 B
Docker
FROM clearlinux
|
|
MAINTAINER william.douglas@intel.com
|
|
|
|
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/
|