From 0ad00fa51bba9e7dab73ed5ebbb303c2b576f690 Mon Sep 17 00:00:00 2001 From: jiangyong Date: Sun, 9 Mar 2025 00:06:17 +0800 Subject: [PATCH] Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index abb0060..6a04af0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,8 @@ RUN export GOROOT=/usr/local/go1.21.4 && \ export GOPRIVATE=gitlab.batiao8.com && \ export PATH=$PATH:$GOROOT/bin && \ go mod tidy && \ - go build cmd/worker/enterprise-api.go && \ - go build cmd/server/enterprise-worker.go && \ + go build cmd/worker/enterprise-worker.go && \ + go build cmd/server/enterprise-api.go && \ mv enterprise-api /app/bin && \ mv enterprise-worker /app/bin && \ cp -r conf /app && \