From 4159392864305610c8d4183303b609d082b783f9 Mon Sep 17 00:00:00 2001
From: Anthony Cicchetti <anthony@anthonycicchetti.com>
Date: Thu, 28 Apr 2022 18:32:36 -0400
Subject: [PATCH] Dockerfile while I'm here

---
 Dockerfile |  9 +++++++++
 justfile   | 10 ++++++----
 2 files changed, 15 insertions(+), 4 deletions(-)
 create mode 100644 Dockerfile

diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..3a2a620
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,9 @@
+from mcr.microsoft.com/dotnet/sdk:6.0
+
+RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
+	&& apt install nodejs
+
+RUN mkdir /just \
+	&& curl -L 'https://github.com/casey/just/releases/download/1.1.2/just-1.1.2-x86_64-unknown-linux-musl.tar.gz' | tar xvz -C /just
+
+WORKDIR /srv
diff --git a/justfile b/justfile
index 3108704..32111da 100644
--- a/justfile
+++ b/justfile
@@ -1,8 +1,10 @@
-build:
+set windows-powershell := true
+
+serve:
     pnpm run start
 
 setup:
-	dotnet tool restore
-	npm i -g pnpm
+    dotnet tool restore
+    npm i -g pnpm
     pnpm i
-	dotnet femto ./src
+    dotnet femto ./src