mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-06-29 17:17:05 +00:00
245e07782c
Signed-off-by: Liu Jianjun <jianjun.liu@intel.com>
11 lines
195 B
Docker
11 lines
195 B
Docker
FROM clearlinux:latest
|
|
MAINTAINER jianjun.liu@intel.com
|
|
|
|
ARG swupd_args
|
|
|
|
RUN swupd update $swupd_args \
|
|
&& swupd bundle-add php-basic $swupd_args \
|
|
&& rm -rf /var/lib/swupd/*
|
|
|
|
CMD ["php","-a"]
|