diff --git a/src/Dockerfile b/src/Dockerfile index add5976..b0e92be 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -15,6 +15,9 @@ RUN mv src/assets /app && ln -s /app/assets src/ # install ef tools RUN dotnet tool install --global dotnet-ef --version 7.0.12 +# ensure path set +ENV PATH="${PATH}:/root/.dotnet/tools" + # ensure database is in sync with migrations RUN dotnet ef database update