FROM microsoft/aspnetcore:latest

# Set the Working Directory
WORKDIR /app

# Copy the app
COPY . /app

# Start the app
ENTRYPOINT dotnet <%= name %>.dll