ai-gateway/Dockerfile

44 lines
1023 B
Docker
Raw Normal View History

2023-04-22 12:39:27 +00:00
FROM node:16 as builder
2024-01-07 07:33:33 +00:00
WORKDIR /web
COPY ./VERSION .
COPY ./web .
2024-01-07 06:38:02 +00:00
WORKDIR /web/default
RUN npm install
2024-01-07 07:33:33 +00:00
RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
2024-01-07 06:38:02 +00:00
WORKDIR /web/berry
RUN npm install
2024-01-07 07:33:33 +00:00
RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
2023-04-22 12:39:27 +00:00
WORKDIR /web/air
RUN npm install
RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
2024-07-06 05:14:07 +00:00
FROM golang:alpine AS builder2
RUN apk add --no-cache g++
2023-04-22 12:39:27 +00:00
ENV GO111MODULE=on \
CGO_ENABLED=1 \
GOOS=linux
WORKDIR /build
ADD go.mod go.sum ./
RUN go mod download
2023-04-22 12:39:27 +00:00
COPY . .
2024-01-07 07:33:33 +00:00
COPY --from=builder /web/build ./web/build
2024-07-06 05:14:07 +00:00
RUN go build -trimpath -ldflags "-s -w -X 'github.com/songquanpeng/one-api/common.Version=$(cat VERSION)' -extldflags '-static'" -o one-api
2023-04-22 12:39:27 +00:00
FROM alpine
RUN apk update \
&& apk upgrade \
&& apk add --no-cache ca-certificates tzdata \
&& update-ca-certificates 2>/dev/null || true
2023-04-26 05:04:01 +00:00
2023-04-22 13:14:09 +00:00
COPY --from=builder2 /build/one-api /
2023-04-22 12:39:27 +00:00
EXPOSE 3000
WORKDIR /data
2024-01-07 06:38:02 +00:00
ENTRYPOINT ["/one-api"]