forked from drdaeman/docker-emailrelay
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade versions mailrelay 2.3, alpine 3.16
- Loading branch information
1 parent
5e87a29
commit 4752cd5
Showing
2 changed files
with
4 additions
and
3 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,6 +1,6 @@ | ||
FROM alpine:3.13 as builder | ||
FROM alpine:3.16 as builder | ||
|
||
ARG DOWNLOAD_URL=https://downloads.sourceforge.net/project/emailrelay/emailrelay/2.2/emailrelay-2.2-src.tar.gz | ||
ARG DOWNLOAD_URL=https://downloads.sourceforge.net/project/emailrelay/emailrelay/2.3/emailrelay-2.3-src.tar.gz | ||
|
||
RUN apk add --no-cache curl g++ make autoconf automake openssl-dev \ | ||
&& mkdir -p /tmp/build && cd /tmp/build \ | ||
|
@@ -11,7 +11,7 @@ RUN apk add --no-cache curl g++ make autoconf automake openssl-dev \ | |
&& make -j $(nproc --all) \ | ||
&& make install | ||
|
||
FROM alpine:3.13 | ||
FROM alpine:3.16 | ||
LABEL maintainer="Dogukan Cagatay <[email protected]>" | ||
|
||
ENV PORT="25" \ | ||
|
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