Skip to content

Commit a5cabda

Browse files
navossocSaraSmiseth
authored andcommitted
4 spaces.
1 parent 727a589 commit a5cabda

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

Dockerfile

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
FROM alpine:3.12
22

33
LABEL description="PostfixAdmin is a web based interface used to manage mailboxes" \
4-
maintainer="Hardware <[email protected]>"
4+
maintainer="Hardware <[email protected]>"
55

66
ARG VERSION=3.2.4
77
ARG SHA256_HASH="f61a64b32052c46f40cba466e5e384de0efab8c343c91569bcc5ebfd3694811e"
88

99
RUN 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

3333
COPY bin /usr/local/bin
3434
RUN chmod +x /usr/local/bin/*

0 commit comments

Comments
 (0)