mirror of
https://github.com/bitwarden/server.git
synced 2025-03-12 13:29:14 +01: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
|