With Docker supporting HereDoc we are now able to create a full minimal API within a docker file, allowing us to use a single file build… — With Docker supporting HereDoc we are now able to create a full minimal API within a docker file, allowing us to use a single file build everything we need. You can watch the full video on YouTube ``` Dockerfile
# syntax=docker/dockerfile:1.4 # specify base image
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-env