From b36184a80a88d39e7fb684e5c4a96ad53eeb3870 Mon Sep 17 00:00:00 2001 From: Evaudas Macaitis Date: Fri, 15 Nov 2024 15:59:18 +0200 Subject: [PATCH] chore: install recommended packages for git clones, pp_calc --- osu_tools/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu_tools/Dockerfile b/osu_tools/Dockerfile index 9db6d61..84c1cd8 100644 --- a/osu_tools/Dockerfile +++ b/osu_tools/Dockerfile @@ -5,8 +5,8 @@ FROM ubuntu:24.04 AS base WORKDIR /app # Install essential tools and pull osu pp-calc repositories -RUN apt-get update -y && apt-get install -y --no-install-recommends \ - git && update-ca-certificates && \ \ +RUN apt-get update -y && apt-get install -y \ + git && \ 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/*