075c1215ca
fefbd4f5(#104) 用本地 third_party/gozero stub 假冒 go-zero 依赖, 让 goctl 1.9.2 生成的 rest.Server/rest.Route 风格 routes.go 能编译, 但带来非标 vendor、Dockerfile 漏拷、新人误解等维护成本。 本次回到fefbd4f5之前的方案: - routes.go 用 gin 原生 publicUserGroupRouter.GET(...) 风格(goctl 1.7.2) - server.go 直接 handler.RegisterHandlers(r, svc),无需 rest.NewGinServer - svc/serviceContext.go 不再持有 AuthMiddleware/DeviceMiddleware/ServerMiddleware 字段 - go.mod 删除 zeromicro/go-zero require + replace 指令 - 删除 third_party/gozero/ stub 模块 - 删除fefbd4f5引入的 28 个 goctl 生成的空 stub 文件和 nodeserver/apple 转发器 - Dockerfile 不再需要 COPY third_party/ invite_sales 还原路由保留(gin 老风格写法)。
46 lines
1.3 KiB
Docker
46 lines
1.3 KiB
Docker
# Use a smaller base image for the build stage
|
|
FROM golang:alpine AS builder
|
|
|
|
LABEL stage=gobuilder
|
|
|
|
ARG TARGETARCH
|
|
ARG VERSION
|
|
ENV CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH}
|
|
|
|
# Combine apk commands into one to reduce layer size
|
|
RUN apk update --no-cache && apk add --no-cache tzdata ca-certificates
|
|
|
|
WORKDIR /build
|
|
|
|
# Copy go.mod and go.sum first to take advantage of Docker caching
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
# Copy the rest of the application code
|
|
COPY . .
|
|
|
|
# Build the binary with version and build time
|
|
RUN BUILD_TIME=$(date -u +"%Y-%m-%d %H:%M:%S") && \
|
|
go build -ldflags="-s -w -X 'github.com/perfect-panel/server/pkg/constant.Version=${VERSION}' -X 'github.com/perfect-panel/server/pkg/constant.BuildTime=${BUILD_TIME}'" -o /app/ppanel ppanel.go
|
|
|
|
# Final minimal image
|
|
FROM scratch
|
|
|
|
# Copy CA certificates and timezone data
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
|
|
|
|
ENV TZ=Asia/Shanghai
|
|
|
|
# Set working directory and copy binary
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /app/ppanel /app/ppanel
|
|
COPY --from=builder /build/etc /app/etc
|
|
|
|
# Expose the port (optional)
|
|
EXPOSE 8080
|
|
|
|
# Specify entry point
|
|
ENTRYPOINT ["/app/ppanel"]
|
|
CMD ["run", "--config", "etc/ppanel.yaml"] |