Files
server/util/Setup/Dockerfile

17 lines
376 B
Docker
Raw Normal View History

2019-07-23 16:38:49 -04:00
FROM mcr.microsoft.com/dotnet/core/runtime:2.2
2017-08-07 16:31:00 -04:00
LABEL com.bitwarden.product="bitwarden" com.bitwarden.project="setup"
2017-08-07 16:31:00 -04:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
openssl \
2018-03-27 14:55:33 -04:00
gosu \
&& rm -rf /var/lib/apt/lists/*
2017-08-07 16:31:00 -04:00
WORKDIR /app
COPY obj/Docker/publish .
2018-03-27 14:55:33 -04:00
COPY entrypoint.sh /
2018-04-16 15:30:07 -04:00
RUN chmod +x /entrypoint.sh
2018-03-26 11:21:03 -04:00
2018-03-27 14:55:33 -04:00
ENTRYPOINT ["/entrypoint.sh"]