chore: add vault bootstrap runtime deps

This commit is contained in:
Ruslan Bakiev
2026-03-31 11:35:53 +07:00
parent fe559865f4
commit 4d89fcf8fd

View File

@@ -2,6 +2,10 @@ FROM node:22-bookworm-slim
WORKDIR /app WORKDIR /app
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends curl jq ca-certificates \
&& rm -rf /var/lib/apt/lists/*
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm ci