From 21601f3293cd43e541eab60311254d7792dc6d3b Mon Sep 17 00:00:00 2001 From: Cizz22 Date: Tue, 24 Feb 2026 13:59:06 +0700 Subject: [PATCH] build: retain tests directory in Docker image. --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 89155a8..6e3ea6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,8 +26,6 @@ ENV POETRY_VIRTUALENVS_IN_PROJECT=1 \ COPY --from=builder /app/.venv /app/.venv # Copy application files COPY . /app/ -# Delete Tests for production -RUN rm -rf /app/tests/ # Add custom configuration to root's .bashrc including password protection RUN echo "# Custom configurations added by Dockerfile" >> /root/.bashrc && \