no-mistakes(review): Remove redundant pip install for alembic and aiosqlite from Dockerfile

This commit is contained in:
root
2026-07-23 12:12:43 +00:00
parent 1677498a8e
commit 4b5d3e4ac1
+1 -2
View File
@@ -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