go
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
4083afdaa1
commit
6987a72ab8
@ -0,0 +1,25 @@
|
||||
**/.dockerignore
|
||||
**/.env
|
||||
**/.git
|
||||
**/.gitignore
|
||||
**/.project
|
||||
**/.settings
|
||||
**/.toolstarget
|
||||
**/.vs
|
||||
**/.vscode
|
||||
**/.idea
|
||||
**/*.*proj.user
|
||||
**/*.dbmdl
|
||||
**/*.jfm
|
||||
**/azds.yaml
|
||||
**/bin
|
||||
**/charts
|
||||
**/docker-compose*
|
||||
**/Dockerfile*
|
||||
**/node_modules
|
||||
**/npm-debug.log
|
||||
**/obj
|
||||
**/secrets.dev.yaml
|
||||
**/values.dev.yaml
|
||||
LICENSE
|
||||
README.md
|
@ -0,0 +1,20 @@
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
|
||||
WORKDIR /app
|
||||
EXPOSE 80
|
||||
EXPOSE 443
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
|
||||
WORKDIR /src
|
||||
COPY ["Bowling Api Gateway/Bowling Api Gateway.csproj", "Bowling Api Gateway/"]
|
||||
RUN dotnet restore "Bowling Api Gateway/Bowling Api Gateway.csproj"
|
||||
COPY . .
|
||||
WORKDIR "/src/Bowling Api Gateway"
|
||||
RUN dotnet build "Bowling Api Gateway.csproj" -c Release -o /app/build
|
||||
|
||||
FROM build AS publish
|
||||
RUN dotnet publish "Bowling Api Gateway.csproj" -c Release -o /app/publish
|
||||
|
||||
FROM base AS final
|
||||
WORKDIR /app
|
||||
COPY --from=publish /app/publish .
|
||||
ENTRYPOINT ["dotnet", "Bowling Api Gateway.dll"]
|
@ -0,0 +1,26 @@
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
|
||||
WORKDIR /app
|
||||
EXPOSE 80
|
||||
EXPOSE 443
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
|
||||
WORKDIR /src
|
||||
COPY ["BowlingApi/BowlingApi.csproj", "BowlingApi/"]
|
||||
COPY ["BowlingService/BowlingService.csproj", "BowlingService/"]
|
||||
COPY ["BowlingLib/BowlingLib.csproj", "BowlingLib/"]
|
||||
COPY ["BowlingRepository/BowlingRepository.csproj", "BowlingRepository/"]
|
||||
COPY ["BowlingEF/BowlingEF.csproj", "BowlingEF/"]
|
||||
COPY ["DTOs/DTOs.csproj", "DTOs/"]
|
||||
COPY ["Mapper/Mapper.csproj", "Mapper/"]
|
||||
RUN dotnet restore "BowlingApi/BowlingApi.csproj"
|
||||
COPY . .
|
||||
WORKDIR "/src/BowlingApi"
|
||||
RUN dotnet build "BowlingApi.csproj" -c Release -o /app/build
|
||||
|
||||
FROM build AS publish
|
||||
RUN dotnet publish "BowlingApi.csproj" -c Release -o /app/publish
|
||||
|
||||
FROM base AS final
|
||||
WORKDIR /app
|
||||
COPY --from=publish /app/publish .
|
||||
ENTRYPOINT ["dotnet", "BowlingApi.dll"]
|
Loading…
Reference in new issue