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

17
build.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Build the Docker image
echo "Building Wine + .NET SDK Docker image..."
docker build -t wine-dotnet:latest .
if [ $? -eq 0 ]; then
echo "✅ Docker image built successfully!"
echo "To run the container:"
echo "docker run -it --rm wine-dotnet:latest"
echo ""
echo "To run with volume mounting (for development):"
echo "docker run -it --rm -v \$(pwd)/projects:/home/wineuser/projects wine-dotnet:latest"
else
echo "❌ Failed to build Docker image"
exit 1
fi