From 29f9e8fe0213f37ee56df8e2bc2f21bae975d2af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Wed, 13 Nov 2024 22:30:55 +0100 Subject: [PATCH] fix(public): fix problems with building #5 --- apps/public/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/public/Dockerfile b/apps/public/Dockerfile index 7447374a..34617b1c 100644 --- a/apps/public/Dockerfile +++ b/apps/public/Dockerfile @@ -5,6 +5,12 @@ FROM --platform=linux/amd64 node:${NODE_VERSION}-slim AS base ARG DATABASE_URL ENV DATABASE_URL=$DATABASE_URL +ARG REDIS_URL +ENV REDIS_URL=$REDIS_URL + +ARG CLICKHOUSE_URL +ENV CLICKHOUSE_URL=$CLICKHOUSE_URL + ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH"