From ee09ec70afd2d80e9e9e48eaaf4d22cf2e28180c Mon Sep 17 00:00:00 2001 From: Guy Owen Date: Mon, 16 Oct 2023 11:29:05 +1100 Subject: [PATCH 1/3] [DDS-1724] Updated mailhog base image ref. --- images/mailhog/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/mailhog/Dockerfile b/images/mailhog/Dockerfile index 6f5cf017..94f748bb 100644 --- a/images/mailhog/Dockerfile +++ b/images/mailhog/Dockerfile @@ -2,7 +2,7 @@ # MailHog Dockerfile # -FROM alpine:3.4 +FROM alpine:3 # Install ca-certificates, required for the "release message" feature: RUN apk --no-cache add \ From a787980a1e6f97a04937a035f76f3cf2554beaf7 Mon Sep 17 00:00:00 2001 From: Guy Owen Date: Tue, 17 Oct 2023 12:43:42 +1100 Subject: [PATCH 2/3] [DDS-1724] Updated mailhog install cmd. --- images/mailhog/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/mailhog/Dockerfile b/images/mailhog/Dockerfile index 94f748bb..1bc18ca0 100644 --- a/images/mailhog/Dockerfile +++ b/images/mailhog/Dockerfile @@ -14,7 +14,7 @@ RUN apk --no-cache add --virtual build-dependencies \ git \ && mkdir -p /root/gocode \ && export GOPATH=/root/gocode \ - && go get github.com/mailhog/MailHog \ + && go install github.com/mailhog/MailHog@latest \ && mv /root/gocode/bin/MailHog /usr/local/bin \ && rm -rf /root/gocode \ && apk del --purge build-dependencies From ab0237e3dc63e9466c538eeafd5ceb6fa4aa83d3 Mon Sep 17 00:00:00 2001 From: Guy Owen Date: Tue, 17 Oct 2023 12:49:28 +1100 Subject: [PATCH 3/3] [DDS-1724] Updated elasticsearch plugins. --- images/elasticsearch/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/images/elasticsearch/Dockerfile b/images/elasticsearch/Dockerfile index 26564956..4abda571 100644 --- a/images/elasticsearch/Dockerfile +++ b/images/elasticsearch/Dockerfile @@ -2,6 +2,5 @@ FROM elasticsearch:8.5.3 ENV ES_PATH=/usr/share/elasticsearch -RUN $ES_PATH/bin/elasticsearch-plugin install --batch ingest-attachment \ - && $ES_PATH/bin/elasticsearch-plugin install analysis-kuromoji \ +RUN $ES_PATH/bin/elasticsearch-plugin install analysis-kuromoji \ && $ES_PATH/bin/elasticsearch-plugin install analysis-icu