Files
server/util/Setup/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
376 B
Docker
Raw Normal View History

FROM mcr.microsoft.com/dotnet/aspnet:6.0
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/build-output/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"]