From 354e979eb3543a433148a9056f5447bd8678979d Mon Sep 17 00:00:00 2001 From: Arnaud Lier Date: Tue, 18 Feb 2025 17:51:11 +0100 Subject: [PATCH] use x86_64 mailhog --- srcs/requirements/bonus/mailhog/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcs/requirements/bonus/mailhog/Dockerfile b/srcs/requirements/bonus/mailhog/Dockerfile index 7831027..3196ded 100644 --- a/srcs/requirements/bonus/mailhog/Dockerfile +++ b/srcs/requirements/bonus/mailhog/Dockerfile @@ -2,8 +2,10 @@ FROM alpine:3.21.2 LABEL org.opencontainers.image.authors="alier@student.42mulhouse.fr" -RUN wget https://github.com/mailhog/MailHog/releases/download/v1.0.1/MailHog_linux_arm -O /usr/local/bin/mailhog \ +RUN wget https://github.com/mailhog/MailHog/releases/download/v1.0.1/MailHog_linux_amd64 -O /usr/local/bin/mailhog \ && chmod +x /usr/local/bin/mailhog +#RUN wget https://github.com/mailhog/MailHog/releases/download/v1.0.1/MailHog_linux_arm -O /usr/local/bin/mailhog \ +# && chmod +x /usr/local/bin/mailhog ENV MH_UI_WEB_PATH=mailhog