fix: install ca-certificates

This commit is contained in:
murdle 2026-02-28 18:29:49 +02:00
parent 2ae5bd3393
commit e4a690c3ec

View File

@ -10,11 +10,13 @@ WORKDIR /usr/src/app
RUN corepack enable && corepack prepare pnpm@10.26.0 --activate RUN corepack enable && corepack prepare pnpm@10.26.0 --activate
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
curl \ curl \
python3 \ python3 \
make \ make \
g++ \ g++ \
&& rm -rf /var/lib/apt/lists/* ca-certificates \
&& update-ca-certificates \
&& rm -rf /var/lib/apt/lists/*
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
--default-toolchain stable --profile minimal \ --default-toolchain stable --profile minimal \