From 04a8433ddaa9b2ab8033f4690503f974ab009e9c Mon Sep 17 00:00:00 2001 From: Thephaseless Date: Sun, 8 Dec 2024 16:49:38 +0000 Subject: [PATCH] use uv --- .devcontainer/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index b526036..8c9b7df 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,5 +1,6 @@ -FROM python:3.13-bullseye +FROM debian:latest -RUN apt update && apt upgrade -y && apt install -y chromium chromium-driver xvfb +RUN apt update && apt upgrade -y && apt install -y chromium chromium-driver xvfb git -RUN curl -sSL https://install.python-poetry.org | python3 - \ No newline at end of file +RUN curl -LsSf https://astral.sh/uv/install.sh | sh +ENV PATH="/root/.local/bin:$PATH" \ No newline at end of file