From b8edcbe6c17bfa6a7bd290f779a69a437115017b Mon Sep 17 00:00:00 2001 From: Hongming Wang Date: Sat, 18 Apr 2026 00:31:16 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20Dockerfile=20go.sum=20path=20after=20pla?= =?UTF-8?q?tform=20=E2=86=92=20workspace-server=20rename?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- workspace-server/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace-server/Dockerfile b/workspace-server/Dockerfile index 7ddcd12a..3a241323 100644 --- a/workspace-server/Dockerfile +++ b/workspace-server/Dockerfile @@ -7,7 +7,7 @@ FROM golang:1.25-alpine AS builder WORKDIR /app # Plugin source for replace directive in go.mod COPY molecule-ai-plugin-github-app-auth/ /plugin/ -COPY workspace-server/go.mod platform/go.sum ./ +COPY workspace-server/go.mod workspace-server/go.sum ./ # Add replace directive for Docker builds (plugin is COPYed to /plugin above) RUN echo 'replace github.com/Molecule-AI/molecule-ai-plugin-github-app-auth => /plugin' >> go.mod RUN go mod download