mirror of https://github.com/abpframework/abp
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							20 lines
						
					
					
						
							803 B
						
					
					
				
			
		
		
	
	
							20 lines
						
					
					
						
							803 B
						
					
					
				| FROM mcr.microsoft.com/dotnet/core/sdk:3.0-buster AS build
 | |
| COPY . .
 | |
| 
 | |
| WORKDIR /templates/service/host/IdentityServerHost
 | |
| RUN dotnet restore
 | |
| RUN dotnet ef migrations script -i -o migrations-IdentityServerHost.sql
 | |
| 
 | |
| WORKDIR /templates/service/host/Volo.CmsKit.Host
 | |
| RUN dotnet restore
 | |
| RUN dotnet ef migrations script -i -o migrations-CmsKit.sql
 | |
| 
 | |
| FROM mcr.microsoft.com/mssql-tools AS final
 | |
| WORKDIR /src
 | |
| COPY --from=build /templates/service/host/IdentityServerHost/migrations-IdentityServerHost.sql migrations-IdentityServerHost.sql
 | |
| COPY --from=build /templates/service/host/Volo.CmsKit.Host/migrations-CmsKit.sql migrations-CmsKit.sql
 | |
| COPY --from=build /templates/service/database/entrypoint.sh .
 | |
| RUN /bin/bash -c "sed -i $'s/\r$//' entrypoint.sh"
 | |
| RUN chmod +x ./entrypoint.sh
 | |
| 
 | |
| ENTRYPOINT ["./entrypoint.sh"] |