File size: 950 Bytes
f778831
 
 
3f830f9
be5d0fb
 
f778831
2502119
f778831
 
 
 
 
 
 
 
cbace84
e734cd8
f778831
 
 
c873225
f778831
 
 
 
 
 
069ae42
1f26615
 
12a4331
c873225
 
1f26615
 
c873225
12a4331
 
1e072c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
FROM node:16 as builder

WORKDIR /build
RUN git clone https://github.com/MartialBE/one-api.git .

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 --platform=$BUILDPLATFORM caddy:2.6.2-alpine AS runner

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 /usr/local/bin/one-api

WORKDIR /data

COPY Caddyfile ./Caddyfile

RUN chmod 777 -R /data
RUN touch /data/caddy.log && chmod 777 -R /data/caddy.log

EXPOSE 3001

CMD ["sh", "-c", "caddy run --config /data/Caddyfile & /usr/local/bin/one-api"]