Dockerization of ASP.NET Application requires a Dockerfile for configuration and running it as a docker container.
FROM microsoft/dotnet:latest
RUN apt-get update && apt-get install sqlite3 libsqlite3-dev
COPY . /app
WORKDIR /app
RUN ["dotnet", "restore"]
...