From f567799785f4127104f8ccebfd82a5dc1785ed5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Thu, 15 Feb 2024 09:52:45 +0100 Subject: [PATCH] update public docker image --- apps/public/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/public/Dockerfile b/apps/public/Dockerfile index 0f3eab71..d963517d 100644 --- a/apps/public/Dockerfile +++ b/apps/public/Dockerfile @@ -5,6 +5,9 @@ FROM --platform=linux/amd64 node:20-slim AS base ARG DATABASE_URL ENV DATABASE_URL=$DATABASE_URL +ARG REDIS_URL +ENV REDIS_URL=$REDIS_URL + ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH"