Skip to content

Files

Latest commit

 

History

History
23 lines (14 loc) · 510 Bytes

DL3007.md

File metadata and controls

23 lines (14 loc) · 510 Bytes

Pattern: Use of latest image tag

Issue: -

Description

You should not rely that latest tags is a specific version. It's prone to errors if the image will ever update. Prefer a specific tagged image, that way you always know exactly what variant of an image is being used.

Example of incorrect code:

FROM ubuntu:latest

Example of correct code:

FROM ubuntu:12.04

Further Reading