Skip to content

Commit

Permalink
Update RPM packages in Docker image releases (#17037)
Browse files Browse the repository at this point in the history
Ensure the RPM packages contained in the Docker images that we package and release are updated.

Closes #17035
  • Loading branch information
andrewkroh authored Mar 19, 2020
1 parent 1cc1d33 commit a09631a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Add `add_cloudfoundry_metadata` processor to annotate events with Cloud Foundry application data. {pull}16621[16621
- Add support for kubernetes provider to recognize namespace level defaults {pull}16321[16321]
- Add `translate_sid` processor on Windows for converting Windows security identifier (SID) values to names. {issue}7451[7451] {pull}16013[16013]
- Update RPM packages contained in Beat Docker images. {issue}17035[17035]

*Auditbeat*

Expand Down
3 changes: 3 additions & 0 deletions dev-tools/packaging/templates/docker/Dockerfile.agent.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

FROM {{ .from }}

RUN yum -y --setopt=tsflags=nodocs update && \
yum clean all

LABEL \
org.label-schema.build-date="{{ date }}" \
org.label-schema.schema-version="1.0" \
Expand Down
3 changes: 3 additions & 0 deletions dev-tools/packaging/templates/docker/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

FROM {{ .from }}

RUN yum -y --setopt=tsflags=nodocs update && \
yum clean all

LABEL \
org.label-schema.build-date="{{ date }}" \
org.label-schema.schema-version="1.0" \
Expand Down

0 comments on commit a09631a

Please sign in to comment.