From f066edb2637140d3be2f9753e897f5175e640a60 Mon Sep 17 00:00:00 2001 From: brichardson2x <110488707+brichardson2x@users.noreply.github.com> Date: Fri, 9 May 2025 06:32:48 -0500 Subject: [PATCH] Update Dockerfile with python install and symlinks --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9ac98d92..27154f62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,10 +18,15 @@ RUN \ apt-get update && \ apt-get install -y \ git \ + python3 \ + python3-pip \ + python3-venv \ libatomic1 \ nano \ net-tools \ sudo && \ + ln -sf /usr/bin/python3 /usr/bin/python && \ + ln -sf /usr/bin/pip3 /usr/bin/pip && \ echo "**** install code-server ****" && \ if [ -z ${CODE_RELEASE+x} ]; then \ CODE_RELEASE=$(curl -sX GET https://api.github.com/repos/coder/code-server/releases/latest \