1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2024-11-24 02:37:05 +00:00

add missing ppa repo to dockerfile

This commit is contained in:
Jonas Tingeborn 2016-02-14 03:57:20 +01:00
parent e004041de2
commit c6d432cfc3

View File

@ -29,6 +29,9 @@ CMD ["/sbin/my_init"]
# Create the user-data user, so the start script doesn't have to. # Create the user-data user, so the start script doesn't have to.
RUN useradd -m user-data RUN useradd -m user-data
# Add project specific repo for dovecot and postgrey
RUN add-apt-repository -y ppa:mail-in-a-box/ppa
# Docker has a beautiful way to cache images after each step. The next few # Docker has a beautiful way to cache images after each step. The next few
# steps of installing system packages are very intensive, so we take care # steps of installing system packages are very intensive, so we take care
# of them early and let docker cache the image after that, before doing # of them early and let docker cache the image after that, before doing