first commit

This commit is contained in:
2025-07-06 23:50:39 +02:00
commit bd0c6a6eed
5 changed files with 178 additions and 0 deletions

16
build.ps1 Normal file
View File

@@ -0,0 +1,16 @@
# 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
}