From 3dbbdaeec29543e35fb14d70e2fbd8ed9bcda380 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 23 Feb 2025 12:20:06 -0500 Subject: [PATCH] Update dockerfile - Bump ubuntu version - Switch to apt from apt-get - Add extra install for apt-transport-https --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index eec30ef..0799e1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,13 @@ ## OP25 Core Container -FROM ubuntu:22.04 +FROM ubuntu:24.04 # Set environment variables ENV DEBIAN_FRONTEND=noninteractive # Install system dependencies -RUN apt-get update && \ - apt-get install -y git \ +RUN apt update && \ + apt install -y apt-transport-https && \ + apt install -y git \ curl \ python3 \ python3-pip \