From 1fd28b538c1ecd9d2d6ea90d9850773ac2759b05 Mon Sep 17 00:00:00 2001 From: Evaudas Macaitis Date: Fri, 15 Nov 2024 15:54:31 +0200 Subject: [PATCH] chore: update_ca_certs for git pulls for pp_calc --- osu_tools/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osu_tools/Dockerfile b/osu_tools/Dockerfile index 9ffea8e..9db6d61 100644 --- a/osu_tools/Dockerfile +++ b/osu_tools/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app # Install essential tools and pull osu pp-calc repositories RUN apt-get update -y && apt-get install -y --no-install-recommends \ - git && \ + git && update-ca-certificates && \ \ git clone --depth 1 https://github.com/ppy/osu-tools.git && \ git clone --depth 1 https://github.com/ppy/osu.git && \ rm -rf /var/lib/apt/lists/* @@ -20,7 +20,6 @@ ENV DEBIAN_FRONTEND=noninteractive # Update and upgrade essential packages RUN apt-get -y update && apt-get -y upgrade && apt-get install -y --no-install-recommends \ software-properties-common && \ - sudo update-ca-certificates && \ rm -rf /var/lib/apt/lists/* # Install dependencies for .NET 8 and Python 3.13