Skip to content

Commit

Permalink
Fixing #5
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Paquet committed May 30, 2022
1 parent d4e1780 commit 2a2f1de
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG MAILCATCHER_VERSION=0.8.2

# Label
LABEL maintainer="spaquet74@gmail.com" \
version="1.7.7" \
version="1.7.8" \
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}" \
Expand All @@ -19,9 +19,10 @@ ENV LANG="en_US.UTF-8" \
TIMEZONE="UTC" \
MAIL_LIMIT=50

RUN apk add --no-cache ruby ruby-bigdecimal \
RUN apk add --no-cache ruby \
ruby-json sqlite-libs libstdc++ \
ruby-dev make g++ sqlite-dev \
&& gem install --no-document --no-user-install net-smtp \
&& gem install -v $MAILCATCHER_VERSION mailcatcher --no-document \
&& apk del --rdepends --purge ruby-dev make g++ sqlite-dev \
# && apk update && apk upgrade \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Docker Mailcatcher using the latest Alpine Linux.
|---------------|----------|
| Alpine Linux | 3.16.0 |
| MailCatcher | 0.8.2 |
| Ruby | 3.0.3-r0 |
| Ruby | 3.1.2-r0 |
| SQLite | 3.36.0-r0 |

Ruby & SQlite versions may differ as they are updated during the installation of the image. A full list of the installed packages can be extracted using the following command `docker exec -i <image_name> apk info -vv | sort`
Expand Down
5 changes: 3 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Docker Mailcatcher using the latest Alpine Linux.

| component | version |
|---------------|----------|
| Alpine Linux | 3.15.4 |
| Alpine Linux | 3.16.0 |
| MailCatcher | 0.8.2 |
| Ruby | 3.0.3-r0 |
| Ruby | 3.1.2-r0 |
| SQLite | 3.36.0-r0 |

Ruby & SQlite versions may differ as they are updated during the installation of the image. A full list of the installed packages can be extracted using the following command `docker exec -i <image_name> apk info -vv | sort`
Expand Down Expand Up @@ -162,6 +162,7 @@ MailCatcher is running in `foreground` mode. This does not change MailCatcher be
| 1.7.5 | 2022-03-31 | Upgrading to Alpine Linux 3.15.3 |
| 1.7.6 | 2022-04-05 | Upgrading to Alpine Linux 3.15.4 |
| 1.7.7 | 2022-05-25 | Upgrading to Alpine Linux 3.16.0 |
| 1.7.8 | 2022-05-30 | Fixing #5 - net-smtp was not properly loading when using ruby 3.1 |

## Wanna contribute?

Expand Down

0 comments on commit 2a2f1de

Please sign in to comment.