From 7d5242c7613105c73c408289a16c16229c33fc90 Mon Sep 17 00:00:00 2001 From: johnson2427 Date: Tue, 13 Aug 2024 16:42:25 -0500 Subject: [PATCH] fix: install with root --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index f5fb2e6610..f2a54185bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,11 @@ FROM ape:latest-slim +USER root + RUN pip install --upgrade pip RUN pip install /wheels/*.whl +USER harambe + RUN ape --version