diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index 19c3721cf6..d6b91a754d 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -116,7 +116,7 @@ jobs: uses: actions/checkout@v1 - name: Build Docker Image - run: sudo -u \#1001 docker build . -f build/Dockerfile + run: docker build . -f build/Dockerfile linux-unit-tests: name: Linux Unit Tests diff --git a/build/Dockerfile b/build/Dockerfile index fa4e18131f..62815eb72f 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -28,6 +28,7 @@ WORKDIR /repo/src/Tgstation.Server.Host COPY src/Tgstation.Server.Host/ClientApp ClientApp COPY src/Tgstation.Server.Host/Tgstation.Server.Host.csproj ./ +RUN npm set unsafe-perm true RUN dotnet msbuild -target:NpmBuild WORKDIR /repo