fix restores on docker.develop images
This commit is contained in:
parent
ce504d9d36
commit
ad29cfcdfe
@ -12,6 +12,6 @@ COPY ["src/NuGet.config", "src/NuGet.config"]
|
||||
RUN dotnet restore src/ApiGateways/Mobile.Bff.Shopping/aggregator/Mobile.Shopping.HttpAggregator.csproj -nowarn:msb3202,nu1503
|
||||
COPY . .
|
||||
WORKDIR "/src/src/ApiGateways/Mobile.Bff.Shopping/aggregator"
|
||||
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||||
RUN dotnet build -c $BUILD_CONFIGURATION
|
||||
|
||||
CMD ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]]
|
@ -12,6 +12,6 @@ COPY ["src/NuGet.config", "src/NuGet.config"]
|
||||
RUN dotnet restore src/ApiGateways/Web.Bff.Shopping/aggregator/Web.Shopping.HttpAggregator.csproj -nowarn:msb3202,nu1503
|
||||
COPY . .
|
||||
WORKDIR "/src/src/ApiGateways/Web.Bff.Shopping/aggregator"
|
||||
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||||
RUN dotnet build -c $BUILD_CONFIGURATION
|
||||
|
||||
CMD ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]]
|
@ -15,6 +15,6 @@ COPY ["NuGet.config", "NuGet.config"]
|
||||
RUN dotnet restore Services/Basket/Basket.API/Basket.API.csproj -nowarn:msb3202,nu1503
|
||||
COPY . .
|
||||
WORKDIR /src/Services/Basket/Basket.API
|
||||
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||||
RUN dotnet build -c $BUILD_CONFIGURATION
|
||||
|
||||
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
|
@ -17,6 +17,6 @@ COPY ["NuGet.config", "NuGet.config"]
|
||||
RUN dotnet restore Services/Catalog/Catalog.API/Catalog.API.csproj -nowarn:msb3202,nu1503
|
||||
COPY . .
|
||||
WORKDIR "/src/Services/Catalog/Catalog.API"
|
||||
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||||
RUN dotnet build -c $BUILD_CONFIGURATION
|
||||
|
||||
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
|
@ -12,6 +12,6 @@ COPY ["NuGet.config", "NuGet.config"]
|
||||
RUN dotnet restore Services/Identity/Identity.API/Identity.API.csproj -nowarn:msb3202,nu1503
|
||||
COPY . .
|
||||
WORKDIR "/src/Services/Identity/Identity.API"
|
||||
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||||
RUN dotnet build -c $BUILD_CONFIGURATION
|
||||
|
||||
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
|
||||
|
@ -18,6 +18,6 @@ COPY ["NuGet.config", "NuGet.config"]
|
||||
RUN dotnet restore Services/Ordering/Ordering.API/Ordering.API.csproj
|
||||
COPY . .
|
||||
WORKDIR /src/Services/Ordering/Ordering.API
|
||||
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||||
RUN dotnet build -c $BUILD_CONFIGURATION
|
||||
|
||||
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
|
@ -14,6 +14,6 @@ COPY ["src/NuGet.config", "src/NuGet.config"]
|
||||
RUN dotnet restore src/Services/Ordering/Ordering.SignalrHub/Ordering.SignalrHub.csproj
|
||||
COPY . .
|
||||
WORKDIR /src/src/Services/Ordering/Ordering.SignalrHub
|
||||
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||||
RUN dotnet build -c $BUILD_CONFIGURATION
|
||||
|
||||
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
|
@ -18,6 +18,6 @@ COPY ["NuGet.config", "NuGet.config"]
|
||||
RUN dotnet restore Services/Webhooks/Webhooks.API/Webhooks.API.csproj -nowarn:msb3202,nu1503
|
||||
COPY . .
|
||||
WORKDIR "/src/Services/Webhooks/Webhooks.API"
|
||||
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||||
RUN dotnet build -c $BUILD_CONFIGURATION
|
||||
|
||||
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
|
@ -12,6 +12,6 @@ COPY ["NuGet.config", "NuGet.config"]
|
||||
RUN dotnet restore "Web/WebMVC/WebMVC.csproj"
|
||||
COPY . .
|
||||
WORKDIR "/src/Web/WebMVC"
|
||||
RUN dotnet build --no-restore "WebMVC.csproj" -c $BUILD_CONFIGURATION
|
||||
RUN dotnet build "WebMVC.csproj" -c $BUILD_CONFIGURATION
|
||||
|
||||
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
|
Loading…
x
Reference in New Issue
Block a user