Skip to content

Releases: ninjarobot/FSharp.Text.Docker

1.0.6

02 Aug 16:38
Compare
Choose a tag to compare
  • Adds computation expressions to compose dockerfiles.
dockerfile {
    from_stage "mcr.microsoft.com/dotnet/sdk:5.0.302" "builder"
    run_exec "apt-get" "install -y wget"
    run "dotnet new console -lang F# -n foo"
    workdir "foo"
    run "dotnet build -c Release -o app"
    from "mcr.microsoft.com/dotnet/runtime:5.0.8"
    expose 80
    copy_from "builder" "/path/to/source/myApp.dll" "/path/to/dest"
    cmd "dotnet /path/to/dest/myApp.dll"
}

1.0.5

29 Jul 01:56
Compare
Choose a tag to compare
  • Support for copying from other named image layers.

1.0.4

28 Jul 22:12
Compare
Choose a tag to compare

Updated to .net 5.0 and System.Text.Json.