typo
Some checks failed
Docker Builders / build-base-builder (push) Successful in 29s
Docker Builders / build-cpp-builder (push) Failing after 3m58s

This commit is contained in:
2026-01-23 17:46:22 +01:00
parent 3074d39213
commit a1a59cdae3
2 changed files with 3 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ RUN echo '#!/bin/bash\n$@' > /usr/bin/sudo \
&& chmod +x /usr/bin/sudo
# Install base dependencies in one layer
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get install -y \
unzip \
curl \
wget \
@@ -21,8 +21,4 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
software-properties-common \
gnupg \
python3 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
# Optional: Upgrade pip for Python3
RUN python3 -m pip install --no-cache-dir --upgrade pip