File tree Expand file tree Collapse file tree 1 file changed +23
-23
lines changed
Expand file tree Collapse file tree 1 file changed +23
-23
lines changed Original file line number Diff line number Diff line change 11FROM alpine:3.12
22
33LABEL description="PostfixAdmin is a web based interface used to manage mailboxes" \
4- maintainer=
"Hardware <[email protected] >" 4+ maintainer=
"Hardware <[email protected] >" 55
66ARG VERSION=3.2.4
77ARG SHA256_HASH="f61a64b32052c46f40cba466e5e384de0efab8c343c91569bcc5ebfd3694811e"
88
99RUN set -eux; \
10- apk add --no-cache \
11- su-exec \
12- dovecot \
13- tini \
14- \
15- php7 \
16- php7-fpm \
17- php7-imap \
18- php7-mbstring \
19- php7-mysqli \
20- php7-pgsql \
21- php7-phar \
22- php7-session \
23- ; \
24- \
25- PFA_TARBALL="postfixadmin-${VERSION}.tar.gz" ; \
26- wget -q https://github.com/postfixadmin/postfixadmin/archive/${PFA_TARBALL}; \
27- echo "${SHA256_HASH} *${PFA_TARBALL}" | sha256sum -c; \
28- \
29- mkdir /postfixadmin; \
30- tar -xzf ${PFA_TARBALL} --strip-components=1 -C /postfixadmin; \
31- rm -f ${PFA_TARBALL}
10+ apk add --no-cache \
11+ su-exec \
12+ dovecot \
13+ tini \
14+ \
15+ php7 \
16+ php7-fpm \
17+ php7-imap \
18+ php7-mbstring \
19+ php7-mysqli \
20+ php7-pgsql \
21+ php7-phar \
22+ php7-session \
23+ ; \
24+ \
25+ PFA_TARBALL="postfixadmin-${VERSION}.tar.gz" ; \
26+ wget -q https://github.com/postfixadmin/postfixadmin/archive/${PFA_TARBALL}; \
27+ echo "${SHA256_HASH} *${PFA_TARBALL}" | sha256sum -c; \
28+ \
29+ mkdir /postfixadmin; \
30+ tar -xzf ${PFA_TARBALL} --strip-components=1 -C /postfixadmin; \
31+ rm -f ${PFA_TARBALL}
3232
3333COPY bin /usr/local/bin
3434RUN chmod +x /usr/local/bin/*
You can’t perform that action at this time.
0 commit comments