18 lines
747 B
Docker
18 lines
747 B
Docker
|
|
# Local-test image — uses public Microsoft base images + the Liara NuGet mirror.
|
||
|
|
# (The production Dockerfile pulls everything through the Nexus mirror instead.)
|
||
|
|
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
|
||
|
|
WORKDIR /src
|
||
|
|
COPY nuget.docker.config /tmp/nuget.config
|
||
|
|
COPY src/ ./src/
|
||
|
|
RUN dotnet restore src/JobsMedical.Web/JobsMedical.Web.csproj --configfile /tmp/nuget.config -p:NuGetAudit=false
|
||
|
|
RUN dotnet publish src/JobsMedical.Web/JobsMedical.Web.csproj -c Release -o /out --no-restore \
|
||
|
|
/p:UseAppHost=false /p:NuGetAudit=false
|
||
|
|
|
||
|
|
FROM mcr.microsoft.com/dotnet/aspnet:10.0
|
||
|
|
WORKDIR /app
|
||
|
|
COPY --from=build /out ./
|
||
|
|
EXPOSE 8080
|
||
|
|
ENV ASPNETCORE_URLS=http://+:8080 \
|
||
|
|
DOTNET_CLI_TELEMETRY_OPTOUT=1
|
||
|
|
ENTRYPOINT ["dotnet", "JobsMedical.Web.dll"]
|