From 2e5bf3d7adeb5af4c156024e490095401f6c8a8b Mon Sep 17 00:00:00 2001 From: "andrii.dudar" Date: Thu, 24 Oct 2024 18:12:51 +0200 Subject: [PATCH] Issue #475 Input/ Output YAML preview in sidebar, not looks good in case it contains (#476) (#477) - update docker file to support patches --- apps/opik-frontend/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/opik-frontend/Dockerfile b/apps/opik-frontend/Dockerfile index dacf61c131..c0236212cf 100644 --- a/apps/opik-frontend/Dockerfile +++ b/apps/opik-frontend/Dockerfile @@ -4,6 +4,7 @@ FROM node:20.15.0-alpine3.20 as builder WORKDIR /opt/frontend COPY package*.json ./ +COPY patches ./patches RUN npm install # Copy and build the application