Hi,
I’m new to docker. I’m trying to create image with Ubuntu, Java and Apache. What I did is I created an Image as below
FROM ubuntu:16.04
FROM jdk:8
FROM apache
My question is, is it right way to create an Image, because the images (Jdk and apache) which I got from docker hub may be built from a different Ubuntu version and I may get conflicts or they don’t have any OS installed in it or it may not behave as intended?