Tom Deseyn
Tom Deseyn
`WithBindMount` doesn't work on SELinux systems because the src directories don't have the right labels. For example: ``` $ podman run --rm --mount type=bind,src=$(mktemp -d),target=/mnt docker.io/library/busybox:latest ls /mnt ls: can't...
One distinction between `podman` and `docker` for bind mounts is that `docker` will create the specified path if it does not exist while `podman` will fail if it does not...
The current implementation unconditionally uses `-rwxr-xr-x.` and `root:root` for the application files. It would be nice to be able to: - control the umask (permission filter) - control the user/group...
Currently the image gets pushed to the remote registry when `ContainerRegistry` is set. pseudo logic: ``` LoadLocal := ContainerRegistry == "" PushRemote = ContainerRegistry != "" ``` It may be...
https://github.com/dotnet/msbuild/pull/9640 introduced the `getResultOutputFile` which makes it possible to redirect the project evaluation output into a separate file. This feature has now become available as part of the 8.0.3xx SDK...
Fixes https://github.com/tmds/Tmds.Ssh/issues/199.
This test has failed in CI: The test wants to verify an exception gets wrapped as an IOException, but it seems the to-be-wrapped exception is not thrown: ``` [xUnit.net 00:00:48.36]...
This is to enable configuration of `SshClientSettings` using the [ssh_config](https://man7.org/linux/man-pages/man5/ssh_config.5.html) format and using the default _ssh_config_ config files. The API could be something like: ```cs class SshClientSettings { static IReadOnlyList...
When we run the tests in our CI, the following tests fail: ``` Microsoft.AspNetCore.TargetingPackTests.PlatformManifestListsAllFiles Microsoft.AspNetCore.TargetingPackTests.PackageOverridesContainsCorrectEntries Microsoft.AspNetCore.TargetingPackTests.TargetingPackContainsListedAssemblies Microsoft.AspNetCore.TargetingPackTests.FrameworkListContainsCorrectPaths Microsoft.AspNetCore.TargetingPackTests.AssembliesAreReferenceAssemblies Microsoft.AspNetCore.TargetingPackTests.FrameworkListContainsCorrectEntries Microsoft.AspNetCore.TargetingPackTests.RefAssemblyReferencesHaveExpectedAssemblyVersions Microsoft.AspNetCore.TargetingPackTests.FrameworkListContainsAnalyzerLanguage Microsoft.AspNetCore.TargetingPackTests.RefAssembliesHaveExpectedAssemblyVersions Microsoft.AspNetCore.SharedFxTests.SharedFrameworkContainsValidRuntimeConfigFile Microsoft.AspNetCore.SharedFxTests.ItContainsVersionFile Microsoft.AspNetCore.SharedFxTests.SharedFrameworkContainsValidDepsJson Microsoft.AspNetCore.SharedFxTests.SharedFrameworkContainsExpectedFiles Microsoft.AspNetCore.SharedFxTests.SharedFrameworkAssembliesHaveExpectedAssemblyVersions Microsoft.AspNetCore.SharedFxTests.SharedFrameworkContainsListedAssemblies Microsoft.AspNetCore.SharedFxTests.SharedFrameworkAssemblyReferencesHaveExpectedAssemblyVersions ```...
For example: ```cs class SshClientSettings { IReadOnlyList Credentials { get; set; } = DefaultCredentials; ``` Becomes: ```cs class SshClientSettings { List Credentials { get; set; } = DefaultCredentials; ``` And...