Files
dockerfiles/machine-learning/Dockerfile
T
Rusty Lynch f9cec14591 Squash all RUN commands to a single line so that it results in a
single docker layer.  Adding a new RUN command to remove files
will result in the files not being visible in the container, but
users still carry the full weight of the "deleted" files.

Signed-off-by: Rusty Lynch <rusty.lynch@intel.com>
2019-07-22 10:16:52 -07:00

11 lines
232 B
Docker

FROM clearlinux
MAINTAINER marcos.simental.magana@intel.com
ARG swupd_args
RUN swupd update --no-boot-update $swupd_args \
&& swupd bundle-add machine-learning-basic R-basic R-extras \
&& rm -rf /var/lib/swupd
CMD 'bash'