mirror of https://github.com/abpframework/eventhub
8 changed files with 14 additions and 14 deletions
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim |
|||
COPY bin/Release/net6.0/publish/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:7.0.0-bullseye-slim |
|||
COPY bin/Release/net7.0/publish/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.Admin.HttpApi.Host.dll"] |
|||
@ -1,3 +1,3 @@ |
|||
FROM nginx:latest |
|||
COPY ./bin/Release/net6.0/publish/wwwroot/ /usr/share/nginx/html/ |
|||
COPY ./bin/Release/net7.0/publish/wwwroot/ /usr/share/nginx/html/ |
|||
COPY ./nginx.conf /etc/nginx/conf.d/default.conf |
|||
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim |
|||
COPY bin/Release/net6.0/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:7.0.0-bullseye-slim |
|||
COPY bin/Release/net7.0/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.BackgroundServices.dll"] |
|||
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim |
|||
COPY bin/Release/net6.0/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:7.0.0-bullseye-slim |
|||
COPY bin/Release/net7.0/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.DbMigrator.dll"] |
|||
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim |
|||
COPY bin/Release/net6.0/publish/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:7.0.0-bullseye-slim |
|||
COPY bin/Release/net7.0/publish/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.HttpApi.Host.dll"] |
|||
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim |
|||
COPY bin/Release/net6.0/publish/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:7.0.0-bullseye-slim |
|||
COPY bin/Release/net7.0/publish/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.IdentityServer.dll"] |
|||
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim |
|||
COPY bin/Release/net6.0/publish/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:7.0.0-bullseye-slim |
|||
COPY bin/Release/net7.0/publish/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.Web.dll"] |
|||
Loading…
Reference in new issue