From 2c8b4776d9ea486ff49eeacfca1cb6d7a69c4227 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jan 2025 20:09:30 +0000 Subject: [PATCH] chore: use --no-chache and libssl3 + build-base packages --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 34f2553..80e35d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ LABEL org.opencontainers.image.source=https://git.kemitix.net/kemitix/rust # openssl-dev - build dependency for git-next # dbus-dev - linux os interop (e.g. desktop notifications) # git - git -RUN apk add nodejs curl clang pkgconfig mold openssl-dev dbus-dev git bash +RUN apk add --no-cache nodejs curl clang pkgconfig mold libssl3 openssl-dev build-base dbus-dev git bash RUN curl -L https://github.com/cargo-bins/cargo-binstall/releases/download/v1.10.19/cargo-binstall-x86_64-unknown-linux-musl.tgz -o cargo-binstall.tgz && \ tar -xzf cargo-binstall.tgz && \