From b76bff834bd27298c485e8dd6b3e2fc374a26fc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20P=C3=A9rez?= Date: Mon, 11 May 2026 02:12:44 -0600 Subject: [PATCH] =?UTF-8?q?Modificacion=20docker=20file=20sobre=20run=20bu?= =?UTF-8?q?ild=20y=20modificaci=C3=B3n=20de=20variables=20completas=20para?= =?UTF-8?q?=20websocket?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2c1cf914..0d4a4154 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,12 @@ COPY . . RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer RUN composer install --optimize-autoloader -RUN npm ci && npm run build +RUN npm ci && \ + VITE_REVERB_HOST=reverb.muronegro.cloud \ + VITE_REVERB_PORT=443 \ + VITE_REVERB_SCHEME=https \ + VITE_REVERB_APP_KEY=fmoknd2swp3clsqfbdpg \ + npm run build RUN mkdir -p storage/framework/sessions storage/framework/views storage/framework/cache storage/app/livewire-tmp \ && chmod -R 775 storage bootstrap/cache