Files
message-pusher/Dockerfile
T
zimonianhua 52b9439a14 build: 升级 Node.js 版本至 18 并启用 corepack
- 将 Docker 基础镜像从 node:16 升级至 node:18。
- 在 Dockerfile 中启用 corepack 并准备指定版本的 yarn。
- 更新所有 GitHub Actions 工作流中的 node-version 为 18。
2026-02-11 10:09:40 +08:00

33 lines
760 B
Docker

FROM node:18 AS builder
WORKDIR /build
COPY ./web .
COPY ./VERSION .
RUN corepack enable && corepack prepare yarn@1.22.22 --activate
RUN yarn install
RUN REACT_APP_VERSION=$(cat VERSION) yarn build
FROM golang AS builder2
ENV GO111MODULE=on \
CGO_ENABLED=1 \
GOOS=linux
WORKDIR /build
COPY . .
COPY --from=builder /build/build ./web/build
RUN go mod download
RUN go build -ldflags "-s -w -X 'message-pusher/common.Version=$(cat VERSION)' -extldflags '-static'" -o message-pusher
FROM alpine
ENV PORT=3000
RUN apk update \
&& apk upgrade \
&& apk add --no-cache ca-certificates tzdata \
&& update-ca-certificates 2>/dev/null || true
COPY --from=builder2 /build/message-pusher /
EXPOSE 3000
WORKDIR /data
ENTRYPOINT ["/message-pusher"]