-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (27 loc) · 885 Bytes
/
Dockerfile
File metadata and controls
33 lines (27 loc) · 885 Bytes
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
FROM node:20 AS builder
WORKDIR /build
COPY ./web .
COPY ./VERSION .
RUN npm ci --no-audit --no-fund || npm install --no-audit --no-fund
RUN REACT_APP_VERSION=$(cat VERSION) npm run 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 'NewAPI-Gateway/common.Version=$(cat VERSION)' -extldflags '-static'" -o gateway-aggregator
FROM alpine
RUN apk update \
&& apk upgrade \
&& apk add --no-cache ca-certificates tzdata \
&& update-ca-certificates 2>/dev/null || true
ENV PORT=3000
COPY --from=builder2 /build/gateway-aggregator /
COPY --from=builder2 /build/LICENSE /build/THIRD_PARTY_NOTICES.md /licenses/
LABEL org.opencontainers.image.licenses="MIT"
EXPOSE 3000
WORKDIR /data
ENTRYPOINT ["/gateway-aggregator"]