You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
382 B
11 lines
382 B
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
|
|
WORKDIR /
|
|
COPY . Verax/
|
|
RUN dotnet restore /Verax/Verax_API_EF/Verax_API_EF.sln
|
|
RUN dotnet publish -c Release -o out --no-restore /Verax/Verax_API_EF/Verax_API_EF.sln
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0
|
|
WORKDIR /
|
|
COPY --from=build-env /out .
|
|
ENV DOTNET_HOSTBUILDER__RELOADCONFIGONCHANGE=false
|
|
ENTRYPOINT ["dotnet", "API.dll"] |