Dockerfile while I'm here
This commit is contained in:
parent
91cff02d29
commit
d15ffe7b45
2 changed files with 16 additions and 4 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal file
|
@ -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
|
11
justfile
11
justfile
|
@ -1,8 +1,11 @@
|
|||
build:
|
||||
set windows-powershell := true
|
||||
|
||||
serve: setup
|
||||
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
|
||||
{{ just_executable() }} serve
|
||||
|
|
Loading…
Add table
Reference in a new issue