From d41a3b79dc26ed8b537013f10f8a3e67d51d7d1e Mon Sep 17 00:00:00 2001 From: "PolicyEngine[bot]" Date: Fri, 6 Sep 2024 17:56:15 +0200 Subject: [PATCH] fix: Fix directory --- gcp/policyengine_api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcp/policyengine_api/Dockerfile b/gcp/policyengine_api/Dockerfile index f78d62f2..04917e86 100644 --- a/gcp/policyengine_api/Dockerfile +++ b/gcp/policyengine_api/Dockerfile @@ -18,7 +18,7 @@ COPY . /app RUN ls -la /app # Make start.sh executable (if it exists) -RUN if [ -f /app/gcp/policyengine_api/start.sh ]; then chmod +x /app/start.sh; else echo "start.sh not found"; exit 1; fi +RUN if [ -f /app/gcp/policyengine_api/start.sh ]; then chmod +x /app/gcp/policyengine_api/start.sh; else echo "start.sh not found"; exit 1; fi # Install dependencies and run tests RUN cd /app && make install && make test