From f61e1fdc0109301769009b968f4b1b78e92f7932 Mon Sep 17 00:00:00 2001 From: Simon Martens Date: Tue, 30 Sep 2025 12:56:52 +0200 Subject: [PATCH] BUGFIX: no config file in WORKDIR --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 13e6f9f..af9e17b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM golang:1.25 WORKDIR /app COPY . . +COPY config.staging.json config.json RUN go build EXPOSE 8095