is it possible to mention ubuntu patch version in dockerfile
e.g. generally to get ubuntu 16.04 we would have following line in the dockerfile
FROM ubuntu:16.04
What I want to do is within 16.04 also there will be patch versions like 16.04.04
and 16.04.05
so I want to mention that patch version in the dockerfile.
Is it possible somehow ? It doesn't work if I write FROM ubuntu:16.04.04
is there any other syntax ? other way to specify to it.