mirror of
https://github.com/bitwarden/server
synced 2026-01-31 00:33:17 +00:00
9 lines
181 B
Docker
9 lines
181 B
Docker
FROM microsoft/aspnetcore:2.0.5
|
|
|
|
USER root
|
|
RUN groupadd -g 999 bitwarden && \
|
|
useradd -r -u 999 -g bitwarden bitwarden
|
|
|
|
USER bitwarden
|
|
COPY obj/Docker/publish /bitwarden_server
|