From fe71cf89042163f71bf6e10d98c3df11716139da Mon Sep 17 00:00:00 2001 From: Chris Hills Date: Wed, 4 Jun 2025 20:00:07 +0100 Subject: [PATCH] Update Dockerfile This change allows the Docker container to build correctly. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 406a03a..c5d4202 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN mix local.hex --force && mix local.rebar --force ADD ../../ /app WORKDIR /app -RUN mix compile +RUN mix deps.get && mix compile WORKDIR /app/example RUN mix deps.get && mix compile