You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
235 B

  1. FROM docker.0k.io/alpine
  2. RUN apk add logrotate && \
  3. sed -ri 's/^(\/var\/log\/messages \{\})$/# \1/g' /etc/logrotate.conf
  4. RUN apk add netcat-openbsd ## dependency of docker-send-signal
  5. COPY src/ /
  6. ENTRYPOINT ["/entrypoint.sh"]