From ea7ba4762d85fb36397226498303dd0b3f08dc09 Mon Sep 17 00:00:00 2001 From: lamya1baidouri Date: Mon, 3 Feb 2025 14:51:59 +0100 Subject: [PATCH] fix syntax --- .github/workflows/pipeline.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 46de19513..1ae207fdd 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -131,7 +131,8 @@ jobs: run: | set -eo pipefail start_time=$(date +%s%N) - docker build -t app:latest . --no-cache + + docker build -t app:latest -f .devcontainer/Dockerfile . --no-cache build_status=$? end_time=$(date +%s%N) echo "DOCKER_BUILD_TIME=$((($end_time - $start_time)/1000000))" >> $GITHUB_ENV