From b8cd602d7e00e48cf51bfc195a751367c84f7d70 Mon Sep 17 00:00:00 2001 From: Matthias Nannt Date: Tue, 9 Jul 2024 18:26:47 +0200 Subject: [PATCH] fix: Add CRON_SECRET to Dockerfile to fix build errors --- apps/web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 4426e17130..e4aef4daeb 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -27,6 +27,7 @@ RUN apk update && apk add --no-cache g++ cmake make gcc python3 openssl-dev jq ENV DATABASE_URL="postgresql://placeholder:for@build:5432/gets_overwritten_at_runtime?schema=public" ENV NEXTAUTH_SECRET="placeholder_for_next_auth_of_64_chars_get_overwritten_at_runtime" ENV ENCRYPTION_KEY="placeholder_for_build_key_of_64_chars_get_overwritten_at_runtime" +ENV CRON_SECRET="placeholder_for_cron_secret_of_64_chars_get_overwritten_at_runtime" ARG NEXT_PUBLIC_SENTRY_DSN ARG SENTRY_AUTH_TOKEN