We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0f7d88 commit 60a9afaCopy full SHA for 60a9afa
Dockerfile
@@ -3,6 +3,7 @@ FROM debian:13.1-slim
3
ENV BW_VERSION=2025.11.0
4
ENV DEBIAN_FRONTEND=noninteractive
5
6
+# install bitwarden-cli
7
RUN <<EOF
8
apt-get update
9
apt-get install -y --no-install-recommends ca-certificates wget unzip
@@ -15,10 +16,12 @@ RUN <<EOF
15
16
apt-get purge -y unzip
17
EOF
18
19
+# run rootless
20
USER 1000
21
WORKDIR /bw
22
ENV HOME=/bw
23
24
+# copy entrypoint and make it executable
25
COPY --chmod=0755 entrypoint.sh /
26
27
ENTRYPOINT ["/entrypoint.sh"]
0 commit comments