fix: add tools to Dockerfile

This commit is contained in:
allanice001
2025-11-06 02:44:37 +00:00
parent fa6f7ede1f
commit 7412235087

View File

@@ -4,16 +4,16 @@
FROM golang:1.25.3-alpine AS builder
RUN apk add --no-cache \
git ca-certificates tzdata \
bash git ca-certificates tzdata \
build-base \
nodejs npm
nodejs npm \
openjdk17-jre-headless \
jq yq brotli
RUN npm i -g yarn pnpm
WORKDIR /src
WORKDIR /src
COPY . .
RUN make clean && make swagger && make -j3 sdk-all && make ui && make build