Prenons un exemple :
Dockerfile for container1 :
FROM ubuntu:14.04
RUN apt-get update
RUN apt-get install -y php5 php5-mysql
Dockerfile for container2 :
FROM ubuntu:14.04
RUN apt-get update
RUN apt-get install -y php5 php5-mysql php5-dev php5-gd php5-memcache
php5-pspell
Il faut donc l'éviter,
FROM ubuntu:14.04
RUN apt-get update
RUN apt-get install -y php5 php5-mysql
car il s'agit de la même configuration dans les deux Dockerfile.