Merge pull request #322 from meysamhadeli/fix/fix-load-docker-files-in-ci

fix: fix load docker files in ci
This commit is contained in:
Meysam Hadeli 2025-03-15 22:30:30 +03:30 committed by GitHub
commit da39702e33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 20 additions and 20 deletions

View File

@ -6,7 +6,7 @@ COPY ./global.json ./
COPY ./Directory.Build.props ./
# Setup working directory for the project
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/ApiGateway/src/ApiGateway.csproj ./3-microservices-architecture-style/src/ApiGateway/src/
@ -14,7 +14,7 @@ COPY ./3-microservices-architecture-style/src/ApiGateway/src/ApiGateway.csproj .
RUN dotnet restore ./3-microservices-architecture-style/src/ApiGateway/src/ApiGateway.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/ApiGateway/src ./3-microservices-architecture-style/src/ApiGateway/src/
# Build project with Release configuration

View File

@ -6,7 +6,7 @@ COPY ./global.json ./
COPY ./Directory.Build.props ./
# Setup working directory for the project
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/ApiGateway/src/ApiGateway.csproj ./3-microservices-architecture-style/src/ApiGateway/src/
@ -15,7 +15,7 @@ RUN --mount=type=cache,id=gateway_nuget,target=/root/.nuget/packages \
dotnet restore ./3-microservices-architecture-style/src/ApiGateway/src/ApiGateway.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/ApiGateway/src ./3-microservices-architecture-style/src/ApiGateway/src/
# Build project with Release configuration

View File

@ -6,7 +6,7 @@ COPY ./global.json ./
COPY ./Directory.Build.props ./
# Setup working directory for the project
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Booking/src/Booking/Booking.csproj ./3-microservices-architecture-style/src/Services/Booking/src/Booking/
COPY ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/Booking.Api.csproj ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/
@ -15,7 +15,7 @@ COPY ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/B
RUN dotnet restore ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/Booking.Api.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Booking/src/Booking/ ./3-microservices-architecture-style/src/Services/Booking/src/Booking/
COPY ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/ ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/

View File

@ -6,7 +6,7 @@ COPY ./global.json ./
COPY ./Directory.Build.props ./
# Setup working directory for the project
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Booking/src/Booking/Booking.csproj ./3-microservices-architecture-style/src/Services/Booking/src/Booking/
COPY ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/Booking.Api.csproj ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/
@ -16,7 +16,7 @@ RUN --mount=type=cache,id=booking_nuget,target=/root/.nuget/packages \
dotnet restore ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/Booking.Api.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Booking/src/Booking/ ./3-microservices-architecture-style/src/Services/Booking/src/Booking/
COPY ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/ ./3-microservices-architecture-style/src/Services/Booking/src/Booking.Api/

View File

@ -6,7 +6,7 @@ COPY ./global.json ./
COPY ./Directory.Build.props ./
# Setup working directory for the project
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Flight/src/Flight/Flight.csproj ./3-microservices-architecture-style/src/Services/Flight/src/Flight/
COPY ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/Flight.Api.csproj ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/
@ -15,7 +15,7 @@ COPY ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/Fli
RUN dotnet restore ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/Flight.Api.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Flight/src/Flight/ ./3-microservices-architecture-style/src/Services/Flight/src/Flight/
COPY ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/ ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/

View File

@ -6,7 +6,7 @@ COPY ./global.json ./
COPY ./Directory.Build.props ./
# Setup working directory for the project
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Flight/src/Flight/Flight.csproj ./3-microservices-architecture-style/src/Services/Flight/src/Flight/
COPY ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/Flight.Api.csproj ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/
@ -16,7 +16,7 @@ RUN --mount=type=cache,id=flight_nuget,target=/root/.nuget/packages \
dotnet restore ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/Flight.Api.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Flight/src/Flight/ ./3-microservices-architecture-style/src/Services/Flight/src/Flight/
COPY .3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/ ./3-microservices-architecture-style/src/Services/Flight/src/Flight.Api/

View File

@ -7,7 +7,7 @@ COPY ./.editorconfig ./
COPY ./global.json ./
COPY ./Directory.Build.props ./
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Identity/src/Identity/Identity.csproj ./3-microservices-architecture-style/src/Services/Identity/src/Identity/
COPY ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/Identity.Api.csproj ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/
@ -15,7 +15,7 @@ COPY ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api
RUN dotnet restore ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/Identity.Api.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Identity/src/Identity/ ./3-microservices-architecture-style/src/Services/Identity/src/Identity/
COPY ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/ ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/

View File

@ -7,7 +7,7 @@ COPY ./.editorconfig ./
COPY ./global.json ./
COPY ./Directory.Build.props ./
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Identity/src/Identity/Identity.csproj ./3-microservices-architecture-style/src/Services/Identity/src/Identity/
COPY ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/Identity.Api.csproj ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/
@ -16,7 +16,7 @@ RUN --mount=type=cache,id=identity_nuget,target=/root/.nuget/packages \
dotnet restore .3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/Identity.Api.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Identity/src/Identity/ ./3-microservices-architecture-style/src/Services/Identity/src/Identity/
COPY ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/ ./3-microservices-architecture-style/src/Services/Identity/src/Identity.Api/

View File

@ -6,7 +6,7 @@ COPY ./global.json ./
COPY ./Directory.Build.props ./
# Setup working directory for the project
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger/Passenger.csproj ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger/
COPY ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/Passenger.Api.csproj ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/
@ -15,7 +15,7 @@ COPY ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.A
RUN dotnet restore ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/Passenger.Api.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger/ ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger/
COPY ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/ ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/

View File

@ -6,7 +6,7 @@ COPY ./global.json ./
COPY ./Directory.Build.props ./
# Setup working directory for the project
COPY ./BuildingBlocks/BuildingBlocks.csproj ./BuildingBlocks/
COPY ./building-blocks/BuildingBlocks.csproj ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger/Passenger.csproj ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger/
COPY ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/Passenger.Api.csproj ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/
@ -16,7 +16,7 @@ RUN --mount=type=cache,id=passenger_nuget,target=/root/.nuget/packages \
dotnet restore ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/Passenger.Api.csproj
# Copy project files
COPY ./BuildingBlocks ./BuildingBlocks/
COPY ./building-blocks ./building-blocks/
COPY ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger/ ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger/
COPY ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/ ./3-microservices-architecture-style/src/Services/Passenger/src/Passenger.Api/