From e8b528e5f0d05b2457b04bae91d9bd6810abca7e Mon Sep 17 00:00:00 2001 From: benbot Date: Fri, 27 Oct 2023 10:07:36 -0400 Subject: [PATCH] creates database --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 17e61e8..6325cc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,8 @@ COPY assets/ ./ # Switch back to our Elixir image to continue building FROM build AS app-build WORKDIR /app +RUN mix ecto.create +RUN mix ecto.migrate RUN mix phx.digest # Copy our application source code