From 164f46d0f6faec2a4ea20e5c3b7041b2af4de7fc Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Tue, 3 Oct 2023 11:12:15 +0200 Subject: [PATCH] Use local string-templates --- hosting/single/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosting/single/Dockerfile b/hosting/single/Dockerfile index 21414e9b8a..e5f91bb314 100644 --- a/hosting/single/Dockerfile +++ b/hosting/single/Dockerfile @@ -103,6 +103,9 @@ COPY --from=build /app/node_modules /node_modules COPY --from=build /app/package.json /package.json COPY --from=build /app/packages/server /app COPY --from=build /app/packages/worker /worker +COPY --from=build /app/packages/string-templates /string-templates + +RUN cd /string-templates && yarn link && cd ../app && yarn link @budibase/string-templates && cd ../worker && yarn link @budibase/string-templates EXPOSE 80