From 7362715a2133800822fad791026801c5f27e493b Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 23 Feb 2025 21:33:06 -0500 Subject: [PATCH] Uniform apt-get --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e7c883..7f10fa8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,9 @@ FROM ubuntu:22.04 ENV DEBIAN_FRONTEND=noninteractive # Install system dependencies -RUN apt update && \ +RUN apt-get update && \ apt-get install -y --no-install-recommends libc-bin apt-transport-https && \ - apt install -y --no-install-recommends git \ + apt-get install -y --no-install-recommends git \ curl \ python3 \ python3-pip \