From 45d82c7a31636aaac37c23e1dc441586935a6d76 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Mon, 17 Oct 2022 22:29:41 +0100 Subject: [PATCH] Remove debug steps --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b1235db..6d850c22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ENV CARGO_NET_GIT_FETCH_WITH_CLI=$CARGO_NET_GIT_FETCH_WITH_CLI # Needed to build rust things for matrix-sdk-crypto-nodejs # See https://github.com/matrix-org/matrix-rust-sdk-bindings/blob/main/crates/matrix-sdk-crypto-nodejs/release/Dockerfile.linux#L5-L6 -RUN apt-get update && apt-get install -y build-essential cmake time +RUN apt-get update && apt-get install -y build-essential cmake WORKDIR /src @@ -23,7 +23,6 @@ RUN yarn --ignore-scripts --pure-lockfile --network-timeout 600000 COPY . ./ -RUN /usr/bin/time -v cargo build --jobs 1 # Workaround: Need to install esbuild manually https://github.com/evanw/esbuild/issues/462#issuecomment-771328459 RUN node node_modules/esbuild/install.js RUN yarn build