Browse Source

Potential fix?

pull/1/head
Sebastian 9 years ago
parent
commit
16008d3d29
  1. 1
      .dockerignore
  2. 4
      Dockerfile.build

1
.dockerignore

@ -8,7 +8,6 @@
.git .git
# Build results # Build results
**/build/
**/bin/ **/bin/
**/obj/ **/obj/
**/publish/ **/publish/

4
Dockerfile.build

@ -37,9 +37,9 @@ WORKDIR /
# Build Frontend # Build Frontend
RUN cp -a /tmp/node_modules /src/Squidex/ \ RUN cp -a /tmp/node_modules /src/Squidex/ \
&& cd /src/Squidex \ && cd /src/Squidex \
%% npm run test:coverage \
&& npm run build:copy \ && npm run build:copy \
&& npm run build \ && npm run build
&& npm run test:coverage
# Test Backend # Test Backend
RUN dotnet restore \ RUN dotnet restore \

Loading…
Cancel
Save