From 015d36ef915aa3e1882f79d3cea2cee9ea54aaf2 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 13 Feb 2021 14:04:38 +0100 Subject: [PATCH] Add change to compile with all threads again Accidentally removed this on the last commits Adds change from commit ec86734ea1767a726f8a90ed1a68a95c0b5512dc again --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4ffb604..7f28978 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ENV RUSTFLAGS='-C target-feature=-crt-static' WORKDIR /app COPY ./site . RUN apk add --no-cache musl-dev sqlite-dev -RUN cargo install --path . +RUN cargo install --path . -j $(nproc) FROM alpine:latest