Files
server/src/Identity/Dockerfile

19 lines
399 B
Docker
Raw Normal View History

2019-05-07 11:14:37 -04:00
FROM mcr.microsoft.com/dotnet/core/aspnet:2.1.10
2017-08-04 12:21:13 -04:00
LABEL com.bitwarden.product="bitwarden"
2018-03-27 14:55:33 -04:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gosu \
libcurl3 \
2018-03-27 14:55:33 -04:00
&& rm -rf /var/lib/apt/lists/*
2018-03-26 11:21:03 -04:00
ENV ASPNETCORE_URLS http://+:5000
2017-08-04 12:21:13 -04:00
WORKDIR /app
2018-03-26 11:21:03 -04:00
EXPOSE 5000
2017-08-07 11:24:16 -04:00
COPY obj/Docker/publish .
COPY entrypoint.sh /
2018-04-16 15:30:07 -04:00
RUN chmod +x /entrypoint.sh
2018-03-26 11:21:03 -04:00
2017-08-07 11:24:16 -04:00
ENTRYPOINT ["/entrypoint.sh"]