From d6c987f0e0839a4f7b52ea0d49ee9fded71eb986 Mon Sep 17 00:00:00 2001 From: Naren Rohan Date: Fri, 7 Jun 2024 23:17:45 +1200 Subject: [PATCH] Added env to web dockerfiles --- web/Dockerfile.production | 1 + web/Dockerfile.staging | 1 + 2 files changed, 2 insertions(+) diff --git a/web/Dockerfile.production b/web/Dockerfile.production index ef825fab..2b4dd4a6 100644 --- a/web/Dockerfile.production +++ b/web/Dockerfile.production @@ -29,6 +29,7 @@ COPY --link . . # Set build time environment variables ENV VITE_API_URL="https://wdcc-auis-api.fly.dev" +#ENV VITE_STRAPI_URL="https://auis-strapi.fly.dev/" # Build application RUN yarn run build diff --git a/web/Dockerfile.staging b/web/Dockerfile.staging index 3f00ac43..4a725d36 100644 --- a/web/Dockerfile.staging +++ b/web/Dockerfile.staging @@ -29,6 +29,7 @@ COPY --link . . # Set build time environment variables ENV VITE_API_URL="https://wdcc-auis-api-staging.fly.dev" +ENV VITE_STRAPI_URL="https://software-arch-workshop-api.fly.dev" # Build application RUN yarn run build