42_Inception/srcs/requirements/bonus/mailhog/Dockerfile
2025-02-18 11:21:27 +01:00

13 lines
321 B
Docker

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 \
&& chmod +x /usr/local/bin/mailhog
ENV MH_UI_WEB_PATH=mailhog
EXPOSE 1025
EXPOSE 8025
ENTRYPOINT ["mailhog"]