Add packages needed to authenticate to gmail (#10)

* Add packages needed to correctly authenticate using a gmail relay
* Squishing 'apk add' lines
This commit is contained in:
Matias 2019-02-25 10:28:16 -03:00 committed by Boky
parent a1cffc6b23
commit 6cbb7d0837

View file

@ -29,7 +29,7 @@ ENV INBOUND_DEBUGGING=
# Install postfix first to get the first account (101)
# Install opendkim second to get the second account (102)
RUN true && \
apk add --no-cache postfix && \
apk add --no-cache postfix cyrus-sasl cyrus-sasl-plain && \
apk add --no-cache opendkim && \
apk add --no-cache ca-certificates tzdata supervisor rsyslog && \
apk add --no-cache --upgrade musl musl-utils && \
@ -52,4 +52,3 @@ WORKDIR /tmp
EXPOSE 587
CMD ["/bin/sh", "-c", "/run.sh"]