Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
# MailHog Dockerfile
#

FROM golang:1.18-alpine as builder
FROM golang:tip-alpine3.22 AS builder

# Install MailHog:
RUN apk --no-cache add --virtual build-dependencies \
git \
RUN apk --no-cache add --virtual build-dependencies git \
&& mkdir -p /root/gocode \
&& export GOPATH=/root/gocode \
&& go install github.com/mailhog/MailHog@latest
Expand Down