2023-10-17 04:47:10 -04:00
|
|
|
FROM fedora:38@sha256:8285246bd5fad4e76e17a71c88dee34c49e2f227dab4ce7df704b592f8e72d41 AS build
|
2022-11-17 09:25:25 -05:00
|
|
|
|
2023-03-13 13:12:28 -04:00
|
|
|
ARG LOGSTASH_VER=8.6.1
|
2022-11-17 09:25:25 -05:00
|
|
|
|
2023-01-19 05:22:31 -05:00
|
|
|
RUN curl -fsSLO https://artifacts.opensearch.org/logstash/logstash-oss-with-opensearch-output-plugin-$LOGSTASH_VER-linux-x64.tar.gz
|
2022-12-01 03:15:33 -05:00
|
|
|
RUN tar -zxvf logstash-oss-with-opensearch-output-plugin-$LOGSTASH_VER-linux-x64.tar.gz
|
|
|
|
|
2023-10-17 04:47:10 -04:00
|
|
|
FROM fedora:38@sha256:8285246bd5fad4e76e17a71c88dee34c49e2f227dab4ce7df704b592f8e72d41 AS release
|
2022-12-01 03:15:33 -05:00
|
|
|
|
|
|
|
COPY --from=build logstash-* /usr/share/logstash
|
2022-11-17 09:25:25 -05:00
|
|
|
|
2023-08-21 02:01:33 -04:00
|
|
|
COPY debugd/logstash/config/ /usr/share/logstash/config/
|
|
|
|
COPY debugd/logstash/templates/ /usr/share/constellogs/templates/
|
2022-11-17 09:25:25 -05:00
|
|
|
|
2022-12-01 03:15:33 -05:00
|
|
|
RUN chmod -R 777 /usr/share/logstash/data/
|
|
|
|
|
|
|
|
RUN useradd -s /bin/bash logstash
|
|
|
|
USER logstash
|
|
|
|
|
2022-11-17 09:25:25 -05:00
|
|
|
ENTRYPOINT ["/usr/share/logstash/bin/logstash"]
|