-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stephane Paquet
committed
Mar 18, 2022
1 parent
c1b3b5c
commit fbdb612
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM alpine:3.15.1 | ||
FROM alpine:latest | ||
|
||
# Mailcatcher version | ||
ARG MAILCATCHER_VERSION=0.8.2 | ||
|
||
# Label | ||
LABEL maintainer="[email protected]" \ | ||
version="1.7.2" \ | ||
version="1.7.3" \ | ||
description="Debug emails with style using mailcatcher a super simple SMTP server which catches messages sent to it and displays them in a web interface" \ | ||
org.label-schema.name="mailcatcher" \ | ||
org.label-schema.version="${MAILCATCHER_VERSION}" \ | ||
|
@@ -24,6 +24,7 @@ RUN apk add --no-cache ruby ruby-bigdecimal \ | |
ruby-dev make g++ sqlite-dev \ | ||
&& gem install -v $MAILCATCHER_VERSION mailcatcher --no-document \ | ||
&& apk del ruby-dev make g++ sqlite-dev \ | ||
&& apk update && apk upgrade \ | ||
&& rm -rf /var/cache/apk/* /tmp/* /var/tmp/* | ||
|
||
# expose smtp port & web port | ||
|