From 0addace41e356c12db57a6aa5ace3e0c542f33dc Mon Sep 17 00:00:00 2001 From: Adam Goldstone <13471320+agoldstone93@users.noreply.github.com> Date: Mon, 13 Jan 2025 13:52:09 +0000 Subject: [PATCH 1/2] AP-5415: Add url to content security policy so images will display --- config/initializers/content_security_policy.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/initializers/content_security_policy.rb b/config/initializers/content_security_policy.rb index 0d17fd4915..09b18d970c 100644 --- a/config/initializers/content_security_policy.rb +++ b/config/initializers/content_security_policy.rb @@ -8,7 +8,8 @@ GOOGLE_ANALYTICS_DOMAIN, "www.googletagmanager.com", "https://truelayer-client-logos.s3-eu-west-1.amazonaws.com", - "https://truelayer-provider-assets.s3.amazonaws.com" + "https://truelayer-provider-assets.s3.amazonaws.com", + "https://providers-assets.truelayer.com" policy.object_src :none policy.style_src :self, :unsafe_inline policy.script_src :self, From ab7746cce399f04cff6473fbb6856537f7597260 Mon Sep 17 00:00:00 2001 From: Adam Goldstone <13471320+agoldstone93@users.noreply.github.com> Date: Tue, 14 Jan 2025 08:36:19 +0000 Subject: [PATCH 2/2] AP-5415: Add yaml-dev to fix build step issue --- docker/apply_base.dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/apply_base.dockerfile b/docker/apply_base.dockerfile index fa02c2d38d..171cdc801b 100644 --- a/docker/apply_base.dockerfile +++ b/docker/apply_base.dockerfile @@ -18,6 +18,7 @@ RUN apk --no-cache add --virtual build-dependencies \ postgresql-dev \ git \ curl \ + yaml-dev \ && apk --no-cache add \ postgresql-client \ nodejs \