feat: deliver fission console UI, k8s deploy, and tests

This commit is contained in:
Naeel
2026-04-15 07:33:00 +03:00
parent 7e2278371a
commit 6731e8998b
7 changed files with 1016 additions and 24 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM golang:1.26-alpine AS builder
WORKDIR /build
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -trimpath -ldflags="-s -w" -o fission-console .
FROM alpine:3.20
RUN apk add --no-cache ca-certificates
COPY --from=builder /build/fission-console /fission-console
EXPOSE 8090
ENTRYPOINT ["/fission-console"]