From cb1e9496d850cc58a534d66333b31068862103a5 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Mon, 27 Jul 2026 23:51:07 +0100 Subject: [PATCH] Ensure templtes are copied into build context --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b8d14ab..b5d0adf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.24-alpine AS builder WORKDIR /app -COPY src/main.go . +COPY src/ . RUN CGO_ENABLED=0 GOOS=linux go build -o echo-server main.go FROM scratch