From e25585c180db9085b8aad6b85d98aff390c637f7 Mon Sep 17 00:00:00 2001 From: Thomas Iles Date: Mon, 20 Jul 2026 11:13:48 +0100 Subject: [PATCH] Remove GOV_UK_APP_DOMAIN from Dockerfile We used to include the GDS sso gem, which also depends on plek. This meant we had to set the GOV_UK_APP_DOMAIN env var to a dummy value in order to run the application in production. We no longer depend on the GDS sso gem or plek, so we can remove this value from the Dockerfile. See: https://docs.publishing.service.gov.uk/repos/plek.html --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4c76b7df5..26a1aa87f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,8 +35,7 @@ ARG RAILS_ENV NODE_ENV ENV RAILS_ENV="${RAILS_ENV:-production}" \ NODE_ENV="${NODE_ENV:-production}" \ PATH="${PATH}:/home/ruby/.local/bin:/node_modules/.bin" \ - USER="ruby" \ - GOVUK_APP_DOMAIN="https://not-set" + USER="ruby" COPY --chown=ruby:ruby . .