From e0259161e3f666ee4a319baf9cb9428c9ac238c8 Mon Sep 17 00:00:00 2001 From: Shelley Doljack Date: Thu, 15 Feb 2024 14:03:35 -0700 Subject: [PATCH] Adds customizations and env specific args to Dockerfile. --- docker/Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 76a4755eca..b78a1613bb 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -17,8 +17,12 @@ RUN yarn config set python /usr/bin/python3 RUN yarn config set @folio:registry https://repository.folio.org/repository/npm-folio/ RUN yarn install RUN yarn build-module-descriptors -ARG OKAPI_URL=http://localhost:9130 -ARG TENANT_ID=diku + +COPY tenant-assets/MainNav.css node_modules/@folio/stripes-core/src/components/MainNav +COPY tenant-assets/Pane.css node_modules/@folio/stripes-components/lib/Pane + +ARG OKAPI_URL=https://okapi-dev.stanford.edu +ARG TENANT_ID=sul RUN yarn build output --okapi $OKAPI_URL --tenant $TENANT_ID # nginx stage