From 688290486a6b7abf9961a7d3c9be55ed189ccf49 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 5 Feb 2026 16:24:13 +0000 Subject: [PATCH] revert back to working version --- .github/workflows/deploy_terraform.yml | 1 - backend/condition/handler/Dockerfile | 7 +++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 342ed57b..7c6b7dfb 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -142,7 +142,6 @@ jobs: build_context: . build_args: | JUNTE=best - DEV_DB_HOST=${{ secrets.DEV_DB_HOST }} secrets: AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} diff --git a/backend/condition/handler/Dockerfile b/backend/condition/handler/Dockerfile index 970ba913..6a9b7420 100644 --- a/backend/condition/handler/Dockerfile +++ b/backend/condition/handler/Dockerfile @@ -5,8 +5,11 @@ FROM public.ecr.aws/lambda/python:3.11 # ARG EPC_AUTH_TOKEN -ARG DEV_DB_HOST -ENV DEV_DB_HOST=${DEV_DB_HOST} +# ARG DEV_DB_HOST +ARG JUNTE +ENV JUNTE=${JUNTE} + +# ENV DEV_DB_HOST=${DEV_DB_HOST} # Set working directory (Lambda task root) WORKDIR /var/task