Mohammed Foud commited on
Commit
1cf12b8
·
1 Parent(s): ab1cf07

first commit

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -29,7 +29,7 @@ ENV JWT__ISSUER="your-issuer"
29
  ENV JWT__AUDIENCE="your-audience"
30
  # Create migrations
31
  RUN dotnet ef migrations add InitialMigration --project Backend.csproj
32
- RUN dotnet ef database update
33
  RUN dotnet build "Backend.csproj" -c Release -o /app/build
34
 
35
  FROM build AS publish
 
29
  ENV JWT__AUDIENCE="your-audience"
30
  # Create migrations
31
  RUN dotnet ef migrations add InitialMigration --project Backend.csproj
32
+ # RUN dotnet ef database update
33
  RUN dotnet build "Backend.csproj" -c Release -o /app/build
34
 
35
  FROM build AS publish