From ad3e7dca12e47104fcab7b19426e1e108c0256b5 Mon Sep 17 00:00:00 2001 From: David Huertas Date: Fri, 29 Dec 2023 23:44:49 +0100 Subject: [PATCH] chores: Add migrations directory to Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8a6590e..82b611e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,7 @@ ARG APP_NAME WORKDIR /app COPY /templates /app/templates +COPY /migrations /app/migrations # Copy cross-compilation utilities from the xx stage. COPY --from=xx / / @@ -64,7 +65,6 @@ RUN corepack enable COPY tailwind.config.js . COPY styles /app/styles COPY assets /app/assets - # we'll also copy the templates over so tailwind can scan for unused class utilities, omitting them from the final output COPY templates /app/templates