14 lines
579 B
Docker
14 lines
579 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
|
WORKDIR /src
|
|
COPY VigilCareClinical.sln ./
|
|
COPY VigilCare.ClinicalContracts/ VigilCare.ClinicalContracts/
|
|
COPY VigilCare.WardGateway/ VigilCare.WardGateway/
|
|
RUN dotnet restore VigilCare.WardGateway/VigilCare.WardGateway.csproj
|
|
RUN dotnet publish VigilCare.WardGateway/VigilCare.WardGateway.csproj -c Release -o /app/publish --no-restore
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime
|
|
WORKDIR /app
|
|
COPY --from=build /app/publish .
|
|
ENV ASPNETCORE_URLS=http://+:8080
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["dotnet", "VigilCare.WardGateway.dll"] |