diff --git a/build.ps1 b/build.ps1 deleted file mode 100644 index 203dc32..0000000 --- a/build.ps1 +++ /dev/null @@ -1,16 +0,0 @@ -# Build the Docker image -Write-Host "Building Wine + .NET SDK Docker image..." -ForegroundColor Green -docker build -t wine-dotnet:latest . - -if ($LASTEXITCODE -eq 0) { - Write-Host "✅ Docker image built successfully!" -ForegroundColor Green - Write-Host "" - Write-Host "To run the container:" -ForegroundColor Yellow - Write-Host "docker run -it --rm wine-dotnet:latest" -ForegroundColor Cyan - Write-Host "" - Write-Host "To run with volume mounting (for development):" -ForegroundColor Yellow - Write-Host "docker run -it --rm -v ${PWD}/projects:/home/wineuser/projects wine-dotnet:latest" -ForegroundColor Cyan -} else { - Write-Host "❌ Failed to build Docker image" -ForegroundColor Red - exit 1 -}