Files
server/util/Setup/Dockerfile

17 lines
365 B
Docker
Raw Normal View History

2018-10-08 16:14:22 -04:00
FROM microsoft/dotnet:2.1.5-runtime
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"]