From 8ab60fb513458f57a75dca43e0a962c93c28f4e8 Mon Sep 17 00:00:00 2001 From: Eric O Asante Date: Thu, 31 Oct 2024 18:17:15 -0400 Subject: [PATCH] Update ms5.yaml --- .github/workflows/ms5.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ms5.yaml b/.github/workflows/ms5.yaml index 4f77eda..f254fc0 100644 --- a/.github/workflows/ms5.yaml +++ b/.github/workflows/ms5.yaml @@ -46,9 +46,12 @@ jobs: pip install pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Build and Run Docker + - name: Build Docker run: | docker build -f Backend/Docker -t doc Backend/ + + - name: Run Docker + run: | docker run -d -p 5000:5000 doc # Run pytest on your pulled codebase