-
Notifications
You must be signed in to change notification settings - Fork 441
DL3007
Peter deHaan edited this page Jan 20, 2016
·
3 revisions
Using latest is prone to errors if the image will ever update. Pin the version explicitly to a release tag.
FROM debian:latest
FROM debian:jessie
You can never rely that the latest
tags is a specific version.
https://docs.docker.com/engine/userguide/dockerimages/
Tip: You recommend you always use a specific tagged image, for example ubuntu:12.04. That way you always know exactly what variant of an image is being used.