1
0
mirror of https://github.com/bitwarden/server synced 2026-01-04 17:43:53 +00:00

run as bitwarden group/user

This commit is contained in:
Kyle Spearrin
2018-03-23 21:17:37 -04:00
parent 24b8619bd1
commit e499087a57
6 changed files with 25 additions and 0 deletions

View File

@@ -5,6 +5,10 @@ RUN apt-get update \
unzip \
&& rm -rf /var/lib/apt/lists/*
RUN groupadd -g 999 bitwarden && \
useradd -r -u 999 -g bitwarden bitwarden
USER bitwarden
WORKDIR /tmp
COPY iconserver.sha256 .
RUN curl -L -o iconserver.zip https://github.com/mat/besticon/releases/download/v3.6.0/iconserver_linux_amd64.zip \