From ea98615b7f9f06d28c001baea83ab5160e20d328 Mon Sep 17 00:00:00 2001 From: maany Date: Sun, 14 Apr 2024 23:53:55 +0200 Subject: [PATCH] update Dockerfile --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 555f505..5f75296 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,8 @@ FROM python:3.10 +# Install necessary packages +RUN apt-get update && apt-get install -y \ + libgl1-mesa-glx \ + && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY . /app -RUN pip install -r requirements.txt +RUN pip install -r requirements.txt \ No newline at end of file