Compare commits

..

1 commit

Author SHA1 Message Date
314d3046ad test: use correct matrix syntax
Some checks failed
/ test (map[name:nightly]) (push) Failing after 6s
/ test (map[name:stable]) (push) Failing after 7s
2024-09-17 08:08:40 +01:00

View file

@ -9,7 +9,14 @@ FROM docker.io/rust:1.81.0-slim-bookworm
# git - git
RUN apt-get update \
&& \
apt-get satisfy -y "nodejs (>=18.19.0) curl (>=7.88.1) pkg-config (>=1.8.1) libssl-dev (>=3.0.14) git (>=2.39.2)" \
apt-get install -y \
--no-install-recommends \
nodejs=18.19.0+dfsg-6~deb12u2 \
curl=7.88.1-10+deb12u7 \
pkg-config=1.8.1-1 \
libssl-dev=3.0.14-1~deb12u2 \
libdbus-1-dev=1.14.10-1~deb12u1 \
git=1:2.39.2-1.1 \
&& \
rm -r /var/lib/apt/lists/*