From ec4523240f5578f470369c0a981d913683a5d2d3 Mon Sep 17 00:00:00 2001 From: sadnub Date: Sun, 9 Jan 2022 11:49:07 -0500 Subject: [PATCH] remove inotify installation from nats docker image --- docker/containers/tactical-nats/dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/containers/tactical-nats/dockerfile b/docker/containers/tactical-nats/dockerfile index 83441961..8be713ff 100644 --- a/docker/containers/tactical-nats/dockerfile +++ b/docker/containers/tactical-nats/dockerfile @@ -3,7 +3,7 @@ FROM nats:2.6.6-alpine ENV TACTICAL_DIR /opt/tactical ENV TACTICAL_READY_FILE ${TACTICAL_DIR}/tmp/tactical.ready -RUN apk add --no-cache inotify-tools supervisor bash +RUN apk add --no-cache supervisor bash SHELL ["/bin/bash", "-e", "-o", "pipefail", "-c"]