FROM node:16 as builder WORKDIR /build RUN git clone https://github.com/Calcium-Ion/new-api.git . RUN wget -qO- -t1 -T2 "https://api.github.com/repos/Calcium-Ion/new-api/releases" | \ grep "tag_name" | \ head -n 1 | \ awk -F ":" '{print $2}' | \ sed 's/\"//g;s/,//g;s/ //g' > VERSION # Replace /v1 with /hf/v1 in all files under the relay and router directories RUN find /build/router /build/relay -type f -exec sed -i'' 's|/v1|/hf/v1|g' {} + WORKDIR /build/web RUN npm install RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat ../VERSION) npm run build FROM golang AS builder2 ENV GO111MODULE=on \ CGO_ENABLED=1 \ GOOS=linux WORKDIR /build COPY --from=builder /build . RUN go mod download RUN go build -ldflags "-s -w -X 'one-api/common.Version=$(cat VERSION)' -extldflags '-static'" -o one-api FROM alpine ENV CF_TOKEN=token RUN apk update \ && apk upgrade \ && apk add --no-cache ca-certificates tzdata \ && update-ca-certificates 2>/dev/null || true COPY --from=builder2 /build/one-api / COPY --from=cloudflare/cloudflared:latest /usr/local/bin/cloudflared /usr/local/bin/cloudflared EXPOSE 3000 WORKDIR /data RUN chmod 777 -R /data ENTRYPOINT cloudflared tunnel --no-autoupdate run --token $CF_TOKEN & \ /one-api