From 801fac5a419a6669a2ee6f6a9aeb393ee230f4b3 Mon Sep 17 00:00:00 2001 From: Firehose Bot Date: Fri, 15 May 2026 14:58:26 +0100 Subject: [PATCH] Add npm install to Dockerfile for dokku --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e9150da..630badf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,6 +47,9 @@ COPY app/config/runtime.exs config/ RUN mix compile +# Install npm dependencies for JS assets +RUN cd assets && npm install + # Build assets after compile (phoenix-colocated hooks need compiled app) RUN mix assets.deploy