This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM safesecurity/rsyslog:8.2012.0 | |
RUN apk add inotify-tools | |
# Rsyslog Configuration file | |
COPY --chown=root:root rsyslog.conf /etc/rsyslog.conf | |
RUN chmod 0644 /etc/rsyslog.conf | |
# Copy and configure Entrypoint.sh | |
COPY entrypoint.sh /entrypoint.sh | |
RUN chmod 0755 /entrypoint.sh | |
ENTRYPOINT /entrypoint.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment