FSharp.Text.Docker icon indicating copy to clipboard operation
FSharp.Text.Docker copied to clipboard

Build dockerfiles and run docker commands from F#

Results 3 FSharp.Text.Docker issues
Sort by recently updated
recently updated
newest added

Entrypoint is missing from the CE builder. This adds the exec form to abide by this recomendation https://docs.docker.com/reference/build-checks/json-args-recommended/

Bumps System.Text.Json from 5.0.1 to 8.0.4. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=System.Text.Json&package-manager=nuget&previous-version=5.0.1&new-version=8.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

It would be convenient to be able to iterate over a sequence to generate commands, for example ```fsharp for src, dest in [ "file-1", "b"; "file-2", "b" ] do yield!...