1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 04:33:26 +00:00

build and include notifications docker

This commit is contained in:
Kyle Spearrin
2018-08-17 18:14:25 -04:00
parent 5766c1f6f3
commit ca3ecc0163
9 changed files with 110 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
FROM microsoft/dotnet:2.1.2-aspnetcore-runtime
LABEL com.bitwarden.product="bitwarden"
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gosu \
&& 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"]