From 37be451c10ef34a292d95201f5f8eb2f10b1e07c Mon Sep 17 00:00:00 2001 From: Calum Pinder Date: Fri, 31 May 2024 06:48:34 +0100 Subject: [PATCH] Remove logging statements --- .github/workflows/ci-pipeline.yml | 2 -- backend/Dockerfile | 1 - 2 files changed, 3 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index d62aa4b..64e9707 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -8,8 +8,6 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v2 - - name: EchoTest - run: ls ./backend - name: Build test Docker image run: docker build --target test --tag backend:test ./backend - name: Run tests diff --git a/backend/Dockerfile b/backend/Dockerfile index 3d1ec65..570c19d 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -13,7 +13,6 @@ COPY pyproject.toml . COPY gunicorn.conf.py . RUN python -m venv venv -RUN echo ls RUN ["poetry", "install", "--only", "main"] EXPOSE 5000