samples/builders/dotnet-framework-1809
David Freilich 814b1f2581 Update commands to match pack 0.16.0
Pack v0.16.0 deprecated a number of commands, including `create-builder`
and `package-buildpack`. This change replaces references to the
deprecated commands with their new equivalent, using the resource based
subcommand model.

Additionally, this change utilizes the new pack config experimental
command to set experimental, rather than echoing it into the file.

Signed-off-by: David Freilich <dfreilich@vmware.com>
2021-01-14 13:21:06 +02:00
..
README.md Update commands to match pack 0.16.0 2021-01-14 13:21:06 +02:00
builder.toml Add working .NET Framework samples 2020-08-20 14:13:18 -07:00

README.md

Sample .NET Framework 1809 Builder

Prerequisites

  • Docker with Windows Containers and support for 1809 images

Usage

Creating the builder

pack builder create cnbs/sample-builder:dotnet-framework-1809 --config builder.toml

Build app with builder

pack build sample-app --builder cnbs/sample-builder:dotnet-framework-1809 --trust-builder --path ../../apps/aspnet

Run built app

docker run --rm -it -p 8080:80 sample-app