mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
8f03213a9f
Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
9 lines
461 B
Docker
9 lines
461 B
Docker
FROM fedora:38@sha256:6fc00f83a1b6526b1c6562e30f552d109ba8e269259c6742a26efab1b7aef59e AS release
|
|
|
|
RUN dnf install -y https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-8.6.2-x86_64.rpm
|
|
|
|
COPY debugd/filebeat/inputs.yml /usr/share/filebeat/inputs.yml
|
|
COPY debugd/filebeat/templates/ /usr/share/filebeat/templates/
|
|
|
|
ENTRYPOINT ["/usr/share/filebeat/bin/filebeat", "-e", "--path.home", "/usr/share/filebeat", "--path.data", "/usr/share/filebeat/data"]
|