mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-05-14 10:53:43 +00:00
To help analyze the container image size by layers, assume each container image be comprised of: Layer 1: clearlinux:latest Layer 2: swupd update Other layers: the container configurations With this, we can continue to optimize layer size accordingly. Signed-off-by: Qi Zheng <qi.zheng@intel.com>
9 lines
192 B
Docker
9 lines
192 B
Docker
FROM clearlinux:latest
|
|
MAINTAINER hongzhan.chen@intel.com
|
|
|
|
RUN swupd update --no-boot-update $swupd_args
|
|
RUN swupd bundle-add ruby-basic $swupd_args \
|
|
&& rm -rf /var/lib/swupd/*
|
|
|
|
CMD ["irb"]
|