fix: add ca-certificates to bitwarden Dockerfile (curl needs HTTPS certs)
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
0b663ea2c6
commit
b1c4f4b563
1 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
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 npm install -g mcp-proxy@6.5.2 @bitwarden/mcp-server@2026.5.1
|
||||
ENV BW_API_BASE_URL=
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue