fix: Use nightly so Github actions won't exit with 137 #7

Merged
allanger merged 1 commits from refs/pull/7/head into main 2023-03-24 14:58:15 +00:00

View File

@ -3,7 +3,8 @@ WORKDIR /src
RUN apt-get update &&\
apt-get install -y libssl-dev gcc musl pkg-config
COPY ./ .
RUN cargo build --release
RUN rustup default nightly && rustup update
RUN cargo build --release --jobs 2 -Z sparse-registry
FROM debian:stable