From dc6b11cee36580bac8ea6d25e98eb9f9505764e1 Mon Sep 17 00:00:00 2001 From: sam-at-luther Date: Wed, 11 Sep 2024 08:45:13 -0700 Subject: [PATCH] install setuputils in venv --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5a48e71..ebc8074 100644 --- a/Dockerfile +++ b/Dockerfile @@ -71,6 +71,7 @@ RUN apt update -y && apt install --no-install-recommends -yq \ COPY requirements.txt /tmp/requirements.txt RUN mkdir -p /opt/mars RUN python3 -m venv /opt/mars_venv +RUN /opt/mars_venv/bin/pip install setuptools RUN /opt/mars_venv/bin/pip install -r /tmp/requirements.txt FROM ubuntu:24.04