NickIndie
NickIndie
CC#
Created by NickIndie on 3/18/2023 in #help
❔ Can't restore public nuget packages while building docker image
But I'd still like to know what went wrong.
12 replies
CC#
Created by NickIndie on 3/18/2023 in #help
❔ Can't restore public nuget packages while building docker image
12 replies
CC#
Created by NickIndie on 3/18/2023 in #help
❔ Can't restore public nuget packages while building docker image
going to mess with that
12 replies
CC#
Created by NickIndie on 3/18/2023 in #help
❔ Can't restore public nuget packages while building docker image
I'm learning now that net 7 introduced a microsoft container builder... https://github.com/dotnet/sdk-container-builds
12 replies
CC#
Created by NickIndie on 3/18/2023 in #help
❔ Can't restore public nuget packages while building docker image
# https://hub.docker.com/_/microsoft-dotnet
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /source

# copy csproj and restore as distinct layers
COPY *.sln .
COPY OSRS-TaskAPI/*.csproj ./OSRS-TaskAPI/
COPY OSRS-TaskAPI.Domain/*.csproj ./OSRS-TaskAPI.Domain/
COPY OSRS-TaskAPI.Quests/*.csproj ./OSRS-TaskAPI.Quests/
RUN dotnet restore

# copy everything else and build app
COPY OSRS-TaskAPI/. ./OSRS-TaskAPI/
WORKDIR /source/OSRS-TaskAPI
RUN dotnet publish -c release -o /app --no-restore

# final stage/image
FROM mcr.microsoft.com/dotnet/aspnet:7.0
WORKDIR /app
COPY --from=build /app ./
ENTRYPOINT ["dotnet", "OSRS-TaskAPI.dll"]
# https://hub.docker.com/_/microsoft-dotnet
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /source

# copy csproj and restore as distinct layers
COPY *.sln .
COPY OSRS-TaskAPI/*.csproj ./OSRS-TaskAPI/
COPY OSRS-TaskAPI.Domain/*.csproj ./OSRS-TaskAPI.Domain/
COPY OSRS-TaskAPI.Quests/*.csproj ./OSRS-TaskAPI.Quests/
RUN dotnet restore

# copy everything else and build app
COPY OSRS-TaskAPI/. ./OSRS-TaskAPI/
WORKDIR /source/OSRS-TaskAPI
RUN dotnet publish -c release -o /app --no-restore

# final stage/image
FROM mcr.microsoft.com/dotnet/aspnet:7.0
WORKDIR /app
COPY --from=build /app ./
ENTRYPOINT ["dotnet", "OSRS-TaskAPI.dll"]
12 replies