From 4b5d3e4ac199770bcf68966f43cbe62d3156dd52 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 23 Jul 2026 12:12:43 +0000 Subject: [PATCH] no-mistakes(review): Remove redundant pip install for alembic and aiosqlite from Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e190d78..203871b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,7 @@ COPY alembic/ alembic/ COPY app/ app/ # Install Python dependencies -RUN pip install --no-cache-dir -e . && \ - pip install --no-cache-dir alembic aiosqlite +RUN pip install --no-cache-dir -e . # Expose port EXPOSE 8000