1
0
mirror of https://github.com/bitwarden/server synced 2026-01-07 19:13:50 +00:00
Files
server/util/Setup/Dockerfile
2018-03-23 21:58:45 -04:00

15 lines
309 B
Docker

FROM microsoft/dotnet:2.0.5-runtime
USER root
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 .