From 36b3bf7d92c894a0ced5e4884057e61c074691a8 Mon Sep 17 00:00:00 2001 From: varanasigirl <111351391+varanasigirl@users.noreply.github.com> Date: Sat, 29 Mar 2025 01:41:44 +0530 Subject: [PATCH] Update buildspec.yml Updated the line 15 and 19 for using Day 14 instead of Day 13 --- day-14/simple-python-app/buildspec.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/day-14/simple-python-app/buildspec.yml b/day-14/simple-python-app/buildspec.yml index 8cccdf869..5432eb220 100644 --- a/day-14/simple-python-app/buildspec.yml +++ b/day-14/simple-python-app/buildspec.yml @@ -12,11 +12,11 @@ phases: pre_build: commands: - echo "Installing dependencies..." - - pip install -r day-13/simple-python-app/requirements.txt + - pip install -r day-14/simple-python-app/requirements.txt build: commands: - echo "Running tests..." - - cd day-13/simple-python-app/ + - cd day-14/simple-python-app/ - echo "Building Docker image..." - echo "$DOCKER_REGISTRY_PASSWORD" | docker login -u "$DOCKER_REGISTRY_USERNAME" --password-stdin "$DOCKER_REGISTRY_URL" - docker build -t "$DOCKER_REGISTRY_URL/$DOCKER_REGISTRY_USERNAME/simple-python-flask-app:latest" .