Skip to content

Commit

Permalink
Fixing CVE-2022-0778
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Paquet committed Mar 18, 2022
1 parent c1b3b5c commit fbdb612
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
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}" \
Expand All @@ -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
Expand Down

0 comments on commit fbdb612

Please sign in to comment.