| Property | Value |
|---|---|
| Severity | Error |
| Category | Correctness |
| Default | Enabled |
Stage names in a multi-stage build should be unique.
| Property | Value |
|---|---|
| Severity | Error |
| Category | Correctness |
| Default | Enabled |
FROM debian:latest AS builder
RUN apt-get update; apt-get install -y curl
FROM golang:latest AS builder
FROM debian:latest AS deb-builder
RUN apt-get update; apt-get install -y curl
FROM golang:latest AS go-builder
Was this page helpful?