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 && \