From f98add78de50501e281a168ad4d98cc896be1458 Mon Sep 17 00:00:00 2001 From: Oliver Kriska Date: Wed, 26 Jan 2022 16:05:32 +0100 Subject: [PATCH] Docker - fixed releasing with missing tailwind styles --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8d40e6d..d27ee5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,14 +49,12 @@ COPY priv priv # your Elixir templates, you will need to move the asset compilation # step down so that `lib` is available. COPY assets assets +COPY lib lib # compile assets -RUN mix tailwind default --minify RUN mix assets.deploy # Compile the release -COPY lib lib - RUN mix compile # Changes to config/runtime.exs don't require recompiling the code