replicatedhq / dockerfilelint

An opinionated Dockerfile linter.

Home Page:https://www.fromlatest.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Multi-Stage builds incorrectly expect a version label

Hades32 opened this issue · comments

E.g.

FROM alpine:3.13 as base

RUN apk add --no-cache nodejs~=14 npm~=14

FROM base as builder

COPY package.json package-lock.json ./
# ...

Complains about base not having a label