50 lines
1.2 KiB
Docker
50 lines
1.2 KiB
Docker
FROM node:16 as builder
|
|
|
|
WORKDIR /web/default
|
|
COPY web/default/package.json .
|
|
RUN npm install
|
|
COPY ./web/default .
|
|
COPY ./VERSION .
|
|
RUN mkdir -p ../build/default
|
|
RUN GENERATE_SOURCEMAP='false' DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
|
|
RUN mv build/* ../build/default
|
|
|
|
WORKDIR /web/berry
|
|
COPY web/berry/package.json .
|
|
RUN npm install
|
|
COPY ./web/berry .
|
|
COPY ./VERSION .
|
|
RUN mkdir -p ../build/berry
|
|
RUN GENERATE_SOURCEMAP='false' DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
|
|
RUN mv build/* ../build/berry
|
|
|
|
WORKDIR /web/build
|
|
RUN ls
|
|
|
|
FROM golang AS builder2
|
|
|
|
ENV GO111MODULE=on \
|
|
CGO_ENABLED=1 \
|
|
GOOS=linux
|
|
|
|
WORKDIR /build
|
|
ADD go.mod go.sum ./
|
|
RUN go mod download
|
|
COPY . .
|
|
COPY --from=builder /web/build ./web
|
|
RUN ls ./web
|
|
RUN ls ./web/build
|
|
RUN ls ./web/build/default
|
|
RUN go build -ldflags "-s -w -X 'one-api/common.Version=$(cat VERSION)' -extldflags '-static'" -o one-api
|
|
|
|
FROM alpine
|
|
|
|
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 /
|
|
EXPOSE 3000
|
|
WORKDIR /data
|
|
ENTRYPOINT ["/one-api"] |