1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/util/Setup/Dockerfile

17 lines
375 B
Docker
Raw Normal View History

2020-01-13 21:07:52 +01:00
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1
2017-08-07 22:31:00 +02:00
LABEL com.bitwarden.product="bitwarden" com.bitwarden.project="setup"
2017-08-07 22:31:00 +02:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
openssl \
2018-03-27 20:55:33 +02:00
gosu \
&& rm -rf /var/lib/apt/lists/*
2017-08-07 22:31:00 +02:00
WORKDIR /app
COPY obj/Docker/publish .
2018-03-27 20:55:33 +02:00
COPY entrypoint.sh /
2018-04-16 21:30:07 +02:00
RUN chmod +x /entrypoint.sh
2018-03-26 17:21:03 +02:00
2018-03-27 20:55:33 +02:00
ENTRYPOINT ["/entrypoint.sh"]