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:
17
src/Notifications/Dockerfile
Normal file
17
src/Notifications/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user