Browse Source

fix restores on docker.develop images

pull/1566/head
Borja García Rodríguez 4 years ago
parent
commit
ad29cfcdfe
9 changed files with 9 additions and 9 deletions
  1. +1
    -1
      src/ApiGateways/Mobile.Bff.Shopping/aggregator/Dockerfile.develop
  2. +1
    -1
      src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile.develop
  3. +1
    -1
      src/Services/Basket/Basket.API/Dockerfile.develop
  4. +1
    -1
      src/Services/Catalog/Catalog.API/Dockerfile.develop
  5. +1
    -1
      src/Services/Identity/Identity.API/Dockerfile.develop
  6. +1
    -1
      src/Services/Ordering/Ordering.API/Dockerfile.develop
  7. +1
    -1
      src/Services/Ordering/Ordering.SignalrHub/Dockerfile.develop
  8. +1
    -1
      src/Services/Webhooks/Webhooks.API/Dockerfile.develop
  9. +1
    -1
      src/Web/WebMVC/Dockerfile.develop

+ 1
- 1
src/ApiGateways/Mobile.Bff.Shopping/aggregator/Dockerfile.develop View File

@ -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", "--"]]

+ 1
- 1
src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile.develop View File

@ -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", "--"]]

+ 1
- 1
src/Services/Basket/Basket.API/Dockerfile.develop View File

@ -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", "--"]

+ 1
- 1
src/Services/Catalog/Catalog.API/Dockerfile.develop View File

@ -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", "--"]

+ 1
- 1
src/Services/Identity/Identity.API/Dockerfile.develop View File

@ -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", "--"]

+ 1
- 1
src/Services/Ordering/Ordering.API/Dockerfile.develop View File

@ -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", "--"]

+ 1
- 1
src/Services/Ordering/Ordering.SignalrHub/Dockerfile.develop View File

@ -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", "--"]

+ 1
- 1
src/Services/Webhooks/Webhooks.API/Dockerfile.develop View File

@ -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", "--"]

+ 1
- 1
src/Web/WebMVC/Dockerfile.develop View File

@ -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…
Cancel
Save