fix: add ca-certificates to bitwarden Dockerfile (curl needs HTTPS certs)
This commit is contained in:
parent
e114e2e5be
commit
c54aa889f1
1 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
FROM node:22-slim
|
FROM node:22-slim
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends curl unzip && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates unzip && rm -rf /var/lib/apt/lists/*
|
||||||
RUN curl -fsSL "https://github.com/bitwarden/clients/releases/download/cli-v2025.4.0/bw-linux-2025.4.0.zip" -o /tmp/bw.zip && unzip -o /tmp/bw.zip -d /usr/local/bin && rm /tmp/bw.zip && chmod +x /usr/local/bin/bw
|
RUN curl -fsSL "https://github.com/bitwarden/clients/releases/download/cli-v2025.4.0/bw-linux-2025.4.0.zip" -o /tmp/bw.zip && unzip -o /tmp/bw.zip -d /usr/local/bin && rm /tmp/bw.zip && chmod +x /usr/local/bin/bw
|
||||||
RUN npm install -g mcp-proxy@6.5.2 @bitwarden/mcp-server@2026.5.1
|
RUN npm install -g mcp-proxy@6.5.2 @bitwarden/mcp-server@2026.5.1
|
||||||
ENV BW_API_BASE_URL=
|
ENV BW_API_BASE_URL=
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue