mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
8 lines
171 B
Docker
8 lines
171 B
Docker
FROM microsoft/aspnetcore:2.0.5
|
|
|
|
RUN groupadd -g 999 bitwarden && \
|
|
useradd -r -u 999 -g bitwarden bitwarden
|
|
USER bitwarden
|
|
|
|
COPY obj/Docker/publish /bitwarden_server
|