mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-12-31 15:30:19 -05:00
9 lines
434 B
Docker
9 lines
434 B
Docker
FROM fedora:42@sha256:cf907e6a54b0ffd3275e03745b4914e748e69c352810918493ca91789188106c AS release
|
|
|
|
RUN dnf install -y https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-8.6.2-x86_64.rpm
|
|
|
|
RUN dnf install -y systemd-libs
|
|
|
|
COPY debugd/filebeat/templates/ /usr/share/constellogs/templates/
|
|
|
|
ENTRYPOINT ["/usr/share/filebeat/bin/filebeat", "-e", "--path.home", "/usr/share/filebeat", "--path.data", "/usr/share/filebeat/data"]
|