Releases: ninjarobot/FSharp.Text.Docker
Releases · ninjarobot/FSharp.Text.Docker
1.0.6
- 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
- Support for copying from other named image layers.
1.0.4
Updated to .net 5.0 and System.Text.Json.