dockerfile
Some checks failed
Build docker and publish / prepare (20.15.1) (push) Successful in 2s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.api image_name:zero-ppanel-api name:api]) (push) Failing after 1m40s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.node image_name:zero-ppanel-node name:node]) (push) Successful in 4m11s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.queue image_name:zero-ppanel-queue name:queue]) (push) Successful in 4m6s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.scheduler image_name:zero-ppanel-scheduler name:scheduler]) (push) Successful in 3m53s
Build docker and publish / notify (push) Successful in 2s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.admin image_name:zero-ppanel-admin name:admin]) (push) Successful in 4m12s
Build docker and publish / deploy (push) Has been skipped
Some checks failed
Build docker and publish / prepare (20.15.1) (push) Successful in 2s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.api image_name:zero-ppanel-api name:api]) (push) Failing after 1m40s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.node image_name:zero-ppanel-node name:node]) (push) Successful in 4m11s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.queue image_name:zero-ppanel-queue name:queue]) (push) Successful in 4m6s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.scheduler image_name:zero-ppanel-scheduler name:scheduler]) (push) Successful in 3m53s
Build docker and publish / notify (push) Successful in 2s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.admin image_name:zero-ppanel-admin name:admin]) (push) Successful in 4m12s
Build docker and publish / deploy (push) Has been skipped
This commit is contained in:
parent
24c2cbd0e0
commit
e8c651cc6b
@ -5,6 +5,7 @@ COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
COPY apps/api ./apps/api
|
||||
COPY apps/rpc ./apps/rpc
|
||||
COPY pkg ./pkg
|
||||
RUN CGO_ENABLED=0 go build -trimpath -o /ppanel-api ./apps/api/ppanel.go
|
||||
|
||||
|
||||
@ -4,7 +4,8 @@ WORKDIR /app
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
COPY . .
|
||||
COPY apps/queue ./apps/queue
|
||||
COPY pkg ./pkg
|
||||
RUN CGO_ENABLED=0 go build -trimpath -o /ppanel-queue ./apps/queue/queue.go
|
||||
|
||||
FROM alpine:3.19
|
||||
|
||||
@ -4,7 +4,8 @@ WORKDIR /app
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
COPY . .
|
||||
COPY apps/scheduler ./apps/scheduler
|
||||
COPY pkg ./pkg
|
||||
RUN CGO_ENABLED=0 go build -trimpath -o /ppanel-scheduler ./apps/scheduler/scheduler.go
|
||||
|
||||
FROM alpine:3.19
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user