Add change to compile with all threads again

Accidentally removed this on the last commits
Adds change from commit ec86734ea1 again
This commit is contained in:
Manuel 2021-02-13 14:04:38 +01:00
parent 243bc6397b
commit 015d36ef91
Signed by: Manuel
GPG key ID: 4085037435E1F07A

View file

@ -5,7 +5,7 @@ ENV RUSTFLAGS='-C target-feature=-crt-static'
WORKDIR /app WORKDIR /app
COPY ./site . COPY ./site .
RUN apk add --no-cache musl-dev sqlite-dev RUN apk add --no-cache musl-dev sqlite-dev
RUN cargo install --path . RUN cargo install --path . -j $(nproc)
FROM alpine:latest FROM alpine:latest