Update 'Sources/OpenLibraryWrapper/Dockerfile'
continuous-integration/drone/push Build is failing Details

master
Félix MIELCAREK 2 years ago
parent 8145914b68
commit 02496ee80c

@ -1,31 +1,32 @@
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app WORKDIR /app
EXPOSE 80 EXPOSE 80
EXPOSE 443 EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src WORKDIR /src
COPY ["OpenLibraryWrapper/OpenLibraryWrapper.csproj", "OpenLibraryWrapper/"] COPY ["OpenLibraryWrapper/OpenLibraryWrapper.csproj", "OpenLibraryWrapper/"]
COPY ["LibraryDTO/LibraryDTO.csproj", "LibraryDTO/"] COPY ["LibraryDTO/LibraryDTO.csproj", "LibraryDTO/"]
COPY ["StubbedDTO/StubbedDTO.csproj", "StubbedDTO/"] COPY ["StubbedDTO/StubbedDTO.csproj", "StubbedDTO/"]
COPY ["JsonReader/JsonReader.csproj", "JsonReader/"] COPY ["JsonReader/JsonReader.csproj", "JsonReader/"]
COPY ["DtoAbstractLayer/DtoAbstractLayer.csproj", "DtoAbstractLayer/"] COPY ["DtoAbstractLayer/DtoAbstractLayer.csproj", "DtoAbstractLayer/"]
COPY ["OpenLibraryClient/OpenLibraryClient.csproj", "OpenLibraryClient/"] COPY ["OpenLibraryClient/OpenLibraryClient.csproj", "OpenLibraryClient/"]
COPY ["MyLibraryManager/MyLibraryManager.csproj", "MyLibraryManager/"] COPY ["MyLibraryManager/MyLibraryManager.csproj", "MyLibraryManager/"]
COPY ["MyLibraryDB/MyLibraryDB.csproj", "MyLibraryDB/"] COPY ["MyLibraryDB/MyLibraryDB.csproj", "MyLibraryDB/"]
COPY ["MyLibraryEntities/MyLibraryEntities.csproj", "MyLibraryEntities/"] COPY ["MyLibraryEntities/MyLibraryEntities.csproj", "MyLibraryEntities/"]
COPY ["StubbedDB/StubbedDB.csproj", "StubbedDB/"] COPY ["StubbedDB/StubbedDB.csproj", "StubbedDB/"]
RUN dotnet restore "OpenLibraryWrapper/OpenLibraryWrapper.csproj" RUN dotnet restore "OpenLibraryWrapper/OpenLibraryWrapper.csproj"
COPY . . COPY . .
WORKDIR "/src/OpenLibraryWrapper" WORKDIR "/src/OpenLibraryWrapper"
RUN dotnet build "OpenLibraryWrapper.csproj" -c Release -o /app/build RUN dotnet add "OpenLibraryWrapper.csproj" package Swashbuckle.AspNetCore -v 6.5
RUN dotnet build "OpenLibraryWrapper.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "OpenLibraryWrapper.csproj" -c Release -o /app/publish /p:UseAppHost=false FROM build AS publish
RUN dotnet publish "OpenLibraryWrapper.csproj" -c Release -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app FROM base AS final
COPY --from=publish /app/publish . WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "OpenLibraryWrapper.dll"] ENTRYPOINT ["dotnet", "OpenLibraryWrapper.dll"]
Loading…
Cancel
Save