From e2114d7eb01d131b8cbdf246f9aa6679fbf1243a Mon Sep 17 00:00:00 2001 From: Thephaseless Date: Wed, 11 Dec 2024 01:04:08 +0000 Subject: [PATCH] combine apt installs to one --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 192e664..aaf2894 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,8 +17,7 @@ ENV \ WORKDIR /app RUN apt update &&\ apt upgrade -y &&\ - apt install -y --no-install-recommends --no-install-suggests xvfb scrot python3-tk curl chromium chromium-driver ca-certificates x11-common -RUN apt install -y --no-install-recommends --no-install-suggests xauth + apt install -y --no-install-recommends --no-install-suggests xauth xvfb scrot python3-tk curl chromium chromium-driver ca-certificates x11-common RUN curl -LsSf https://astral.sh/uv/install.sh | sh COPY pyproject.toml uv.lock ./ RUN uv sync