mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-06-28 16:46:35 +00:00
f9cec14591
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>
11 lines
232 B
Docker
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'
|