mirror of
https://github.com/bitwarden/server
synced 2026-01-09 03:53:42 +00:00
14 lines
295 B
Docker
14 lines
295 B
Docker
FROM microsoft/dotnet:2.0.5-runtime
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
openssl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN groupadd -g 999 bitwarden && \
|
|
useradd -r -u 999 -g bitwarden bitwarden
|
|
USER bitwarden
|
|
|
|
WORKDIR /app
|
|
COPY obj/Docker/publish .
|