From 1f486ff9bf59d912e2e55c6227dc6ee4849bab20 Mon Sep 17 00:00:00 2001 From: Eros Stein Date: Sun, 26 Apr 2026 07:59:58 -0300 Subject: [PATCH] Feature/remove paywall (#4) * Removing paywall from Company logo + white-label basics, User roles, Email reminders, Conditional fields + formulas and API/Embedding - build error * Removing paywall from Company logo + white-label basics, User roles, Email reminders, Conditional fields + formulas and API/Embedding - build fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 427be3de..127f52e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,8 +42,8 @@ COPY ./app/javascript ./app/javascript COPY ./app/views ./app/views RUN SHAKAPACKER_VERSION="$(ruby -e 'puts File.read("Gemfile.lock")[/^ shakapacker \(([^)]+)\)$/, 1]')" && \ - printf "source 'https://rubygems.org'\ngem 'shakapacker', '%s'\n" "$SHAKAPACKER_VERSION" > Gemfile && \ - ./bin/shakapacker + printf "source 'https://rubygems.org'\ngem 'shakapacker', '%s'\n" "$SHAKAPACKER_VERSION" > shakapacker.Gemfile && \ + BUNDLE_GEMFILE=/app/shakapacker.Gemfile ./bin/shakapacker FROM ruby:4.0.1-alpine AS app