From e21aab96d2abdf0f1f129af3537478807bafdefe Mon Sep 17 00:00:00 2001 From: wh0crypt Date: Thu, 25 Jun 2026 22:49:16 +0100 Subject: [PATCH] style: replace phase with stage in dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0c0fed7..4fdfcd9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# ---- Phase 1: Compile ---- +# ---- Stage 1: Compile ---- FROM golang:1.23-bookworm AS builder RUN apt update && apt -y install \ @@ -25,7 +25,7 @@ RUN cd teamserver/ \ && sed -i 's/go 1.21.0/go 1.23/' go.mod \ && go build -v -o /build/havoc-ts main.go -# ---- Phase 2: Execute ---- +# ---- Stage 2: Execute ---- FROM debian:bookworm-slim RUN apt update && apt -y install \