Mercurial > sat_docs
comparison docker/sat_nomedia/Dockerfile @ 105:b69056368901
docker: images optimisation:
- reduced the number of layers by grouping many instructions
- moved stuff which don't change a lot at the beginning, and hg/apt at the end
- scripts are not now in scripts/ subdirectories
- prosody.cfg.lua is added using ADD instead of getting it online
- .hg/dirstate is copied in base (backend) and libervia, so mercurial revision is known
- removed lot of useless WORKDIR instruction, they are replaced by "cd" inside RUN instructions
- cleaning (apt-clean, rm) is done on the same instruction as the one than generate the data, to avoid useless data in layers
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 28 Feb 2016 02:01:20 +0100 |
parents | 0e78c8a4626e |
children | a7b8bb39736b |
comparison
equal
deleted
inserted
replaced
104:b59491821a8a | 105:b69056368901 |
---|---|
12 | 12 |
13 ######### | 13 ######### |
14 # Ports # | 14 # Ports # |
15 ######### | 15 ######### |
16 | 16 |
17 # IMAP | 17 # IMAP, SMTP and FILE TRANSFER |
18 EXPOSE 10143 | 18 EXPOSE 10143 10125 28915 |
19 | |
20 # SMTP | |
21 EXPOSE 10125 | |
22 | |
23 # FILE TRANSFERT | |
24 EXPOSE 28915 | |
25 | |
26 ############## | |
27 # PROSODYCTL # | |
28 ############## | |
29 | |
30 RUN chmod 0555 /usr/local/bin/prosodyctl | |
31 | 19 |
32 ########## | 20 ########## |
33 # LAUNCH # | 21 # LAUNCH # |
34 ########## | 22 ########## |
35 | 23 |