This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ASP.NET Database path | |
var path = Server.MapPath("~/App_Data/site.db"); | |
using (var db = new LiteDatabase(path)) | |
{ | |
//Sets or Creates a Table in DB | |
var bottles = db.GetCollection<Bottle>("Bottles"); | |
//Creates a new bottle object and saves in db |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:focal | |
WORKDIR ~ | |
# Without interactive dialogue | |
ARG DEBIAN_FRONTEND=noninteractive | |
# Install required packages | |
RUN apt-get update \ | |
&& apt-get install -y wget gnupg2 software-properties-common git apt-utils vim dirmngr apt-transport-https ca-certificates \ |