From 4136c180f9441f1a90f059090e8a8ab3ca8233c5 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Sat, 5 Jan 2019 12:18:01 +0100 Subject: [PATCH] Unified dockerfiles. --- Dockerfile.build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile.build b/Dockerfile.build index 1e05821b2..6f877d600 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -11,7 +11,7 @@ COPY . . # Build Frontend RUN cp -a /tmp/node_modules src/Squidex/ \ - && cd /src/Squidex \ + && cd src/Squidex \ && npm run test:coverage \ && npm run build @@ -20,7 +20,8 @@ RUN dotnet restore \ && dotnet test tests/Squidex.Infrastructure.Tests/Squidex.Infrastructure.Tests.csproj \ && dotnet test tests/Squidex.Domain.Apps.Core.Tests/Squidex.Domain.Apps.Core.Tests.csproj \ && dotnet test tests/Squidex.Domain.Apps.Entities.Tests/Squidex.Domain.Apps.Entities.Tests.csproj \ - && dotnet test tests/Squidex.Domain.Users.Tests/Squidex.Domain.Users.Tests.csproj + && dotnet test tests/Squidex.Domain.Users.Tests/Squidex.Domain.Users.Tests.csproj \ + && dotnet test tests/Squidex.Tests/Squidex.Tests.csproj # Publish RUN dotnet publish src/Squidex/Squidex.csproj --output /out/ --configuration Release \ No newline at end of file