From f595fd35ec8b2d99d2ab189b5ae85452192a83ec Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Thu, 9 May 2024 20:20:39 +0100 Subject: [PATCH] devenv: Install python3-venv --- .devcontainer/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6752bc3e0..901cad098 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,6 +2,8 @@ FROM mcr.microsoft.com/devcontainers/base:jammy COPY tools.mk / -RUN ls /home -l && \ - su vscode -c "make -f tools.mk tools" \ +RUN apt-get update \ + && export DEBIAN_FRONTEND=noninteractive \ + && apt-get -y install --no-install-recommends python3-venv \ + && su vscode -c "make -f tools.mk tools" \ && rm tools.mk