1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 00:53:37 +00:00
Files
server/src/Admin/Dockerfile
2019-03-19 00:24:39 -04:00

19 lines
397 B
Docker

FROM microsoft/dotnet:2.1.5-aspnetcore-runtime
LABEL com.bitwarden.product="bitwarden"
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gosu \
libcurl3 \
&& rm -rf /var/lib/apt/lists/*
ENV ASPNETCORE_URLS http://+:5000
WORKDIR /app
EXPOSE 5000
COPY obj/Docker/publish .
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]