From b45a0e70864b3ff0ab3152f84d05b3600b909a79 Mon Sep 17 00:00:00 2001 From: abdulhade Date: Fri, 4 Apr 2025 19:06:25 +0300 Subject: [PATCH] Fixed the `RUN RUN` command in Dockerfile. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a97dce6..4710513 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ WORKDIR /app # Install system dependencies required for MySQL and other libraries -RUN RUN apt-get update && apt-get install -y --no-install-recommends git && \ +RUN apt-get update && apt-get install -y --no-install-recommends git && \ rm -rf /var/lib/apt/lists/*