
Update the docker image tag in values.yaml as part of helm charts configuration. Also updated Dockerfile and added yamllint configuration. Story: 2008849 Task: 42619 Signed-off-by: Carmen Rata <carmen.rata@windriver.com> Change-Id: I257c8715258498020c518d795e21fd3f862c676a
8 lines
125 B
Docker
8 lines
125 B
Docker
ARG BASE
|
|
FROM ${BASE} AS stx
|
|
RUN yum -y update
|
|
RUN yum -y install\
|
|
audit
|
|
|
|
ENTRYPOINT ["/sbin/auditd", "-f", "-l"]
|