added --force to ensure a migration file is always made.
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
James Tombleson 2023-06-25 21:14:34 -07:00
parent 52e86c01ce
commit f92480e717
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ RUN ls build
FROM build as ef
RUN dotnet tool install dotnet-ef --tool-path /usr/bin --version 7.0.8
RUN dotnet ef migrations bundle --project "Newsbot.Collector.Database"
RUN dotnet ef migrations bundle --project "Newsbot.Collector.Database" --force
FROM mcr.microsoft.com/dotnet/aspnet:7.0.3 as app