From 5d08b72f84d4ba9a44ee39eb055cbbfa80105af4 Mon Sep 17 00:00:00 2001 From: Alvis <37454764+avibn@users.noreply.github.com> Date: Sun, 8 Dec 2024 15:49:59 +0000 Subject: [PATCH] update dependencies --- Dockerfile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 289f53a..896a0ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,20 @@ WORKDIR /app # Add current directory contents into the container at /app ADD . /app +# Install system dependencies for cryptg +RUN apt-get update && apt-get install -y \ + clang \ + libjpeg-dev \ + libwebp-dev \ + python3-dev \ + zlib1g-dev \ + && rm -rf /var/lib/apt/lists/* + +# Upgrade setuptools +RUN pip install --upgrade setuptools + # Install packages from requirements.txt RUN pip install --no-cache-dir -r requirements.txt # Start the bot -CMD ["python", "run.py"] +CMD ["python", "run.py"] \ No newline at end of file